From 5ce36065829cdc23334bbb6ca6c0d83f7de1ece8 Mon Sep 17 00:00:00 2001 From: Crozet Sébastien Date: Thu, 19 Nov 2020 18:09:55 +0100 Subject: Add explicit wake_up parameter to method setting the position and velocity of a rigid-body. --- src/geometry/shape.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/geometry/shape.rs') diff --git a/src/geometry/shape.rs b/src/geometry/shape.rs index 5c96f68..66840a0 100644 --- a/src/geometry/shape.rs +++ b/src/geometry/shape.rs @@ -18,7 +18,7 @@ use { /// Enum representing the type of a shape. pub enum ShapeType { /// A ball shape. - Ball = 1, + Ball = 0, /// A convex polygon shape. Polygon, /// A cuboid shape. -- cgit