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

@@ -59,7 +59,7 @@ pub fn init_world(testbed: &mut Testbed) {
1 => ColliderBuilder::ball(rad).build(),
// Rounded cylinders are much more efficient that cylinder, even if the
// rounding margin is small.
2 => ColliderBuilder::rounded_cylinder(rad, rad, rad / 10.0).build(),
2 => ColliderBuilder::round_cylinder(rad, rad, rad / 10.0).build(),
_ => ColliderBuilder::cone(rad, rad).build(),
};