Rename rounded -> round.

This commit is contained in:
Crozet Sébastien
2020-10-20 18:14:20 +02:00
parent 949e3f5384
commit f7a6f433d6
7 changed files with 12 additions and 12 deletions

View File

@@ -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<Cylinder> {
}
fn shape_type(&self) -> ShapeType {
ShapeType::RoundedCylinder
ShapeType::RoundCylinder
}
#[cfg(feature = "dim3")]