From f7a6f433d62ea427f6e2233365a6f534ca7e1c63 Mon Sep 17 00:00:00 2001 From: Crozet Sébastien Date: Tue, 20 Oct 2020 18:14:20 +0200 Subject: Rename rounded -> round. --- src/geometry/shape.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/geometry/shape.rs') diff --git a/src/geometry/shape.rs b/src/geometry/shape.rs index b6350e9..80c9b51 100644 --- a/src/geometry/shape.rs +++ b/src/geometry/shape.rs @@ -48,7 +48,7 @@ pub enum ShapeType { // RoundedHeightField, /// A cylinder with rounded corners. #[cfg(feature = "dim3")] - RoundedCylinder, + RoundCylinder, // /// A cone with rounded corners. // RoundedCone, } @@ -345,7 +345,7 @@ impl Shape for Rounded { } fn shape_type(&self) -> ShapeType { - ShapeType::RoundedCylinder + ShapeType::RoundCylinder } #[cfg(feature = "dim3")] -- cgit