diff options
| author | Sébastien Crozet <developer@crozet.re> | 2020-11-20 17:39:28 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-20 17:39:28 +0100 |
| commit | 3b9c312fb393e6abdce1afb6dcbeb5e14e1f65c0 (patch) | |
| tree | d2236a6adfd10a8478f63628c766200b93a97a2a /src/geometry/shape.rs | |
| parent | 1b0f39073fa5f87ec275fff0125649de123e6fa9 (diff) | |
| parent | 11e4ccbe930b96a4c04208accd24a4519b783c8c (diff) | |
| download | rapier-3b9c312fb393e6abdce1afb6dcbeb5e14e1f65c0.tar.gz rapier-3b9c312fb393e6abdce1afb6dcbeb5e14e1f65c0.tar.bz2 rapier-3b9c312fb393e6abdce1afb6dcbeb5e14e1f65c0.zip | |
Merge pull request #64 from dimforge/explicit_wake_up
Add more explicit parameters to wake-up a rigid-body
Diffstat (limited to 'src/geometry/shape.rs')
| -rw-r--r-- | src/geometry/shape.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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. |
