diff options
| author | Sébastien Crozet <developer@crozet.re> | 2021-03-03 10:35:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-03 10:35:54 +0100 |
| commit | a8216f5c24b2903ca6798acdd0a40b0a0b6c4b0f (patch) | |
| tree | a9932013897c95b779c240f1636d24476a859863 /build | |
| parent | a74097b4c6708d0108159328169f71e57ab6dd1b (diff) | |
| parent | 1609d93243a74af6666e8b284969faa389f61677 (diff) | |
| download | rapier-a8216f5c24b2903ca6798acdd0a40b0a0b6c4b0f.tar.gz rapier-a8216f5c24b2903ca6798acdd0a40b0a0b6c4b0f.tar.bz2 rapier-a8216f5c24b2903ca6798acdd0a40b0a0b6c4b0f.zip | |
Merge pull request #136 from dimforge/inertia_sqrt
Fix missing sqrt when setting the angular inertia of a RigidBodyBuilder
Diffstat (limited to 'build')
| -rw-r--r-- | build/rapier_testbed2d/Cargo.toml | 2 | ||||
| -rw-r--r-- | build/rapier_testbed3d/Cargo.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/build/rapier_testbed2d/Cargo.toml b/build/rapier_testbed2d/Cargo.toml index 4c3872f..d31cdff 100644 --- a/build/rapier_testbed2d/Cargo.toml +++ b/build/rapier_testbed2d/Cargo.toml @@ -26,7 +26,7 @@ other-backends = [ "wrapped2d", "nphysics2d" ] [dependencies] -nalgebra = "0.25" +nalgebra = { version = "0.25", features = [ "rand" ] } kiss3d = { version = "0.30", features = [ "conrod" ] } rand = "0.8" rand_pcg = "0.3" diff --git a/build/rapier_testbed3d/Cargo.toml b/build/rapier_testbed3d/Cargo.toml index d14a1de..2a599a4 100644 --- a/build/rapier_testbed3d/Cargo.toml +++ b/build/rapier_testbed3d/Cargo.toml @@ -25,7 +25,7 @@ parallel = [ "rapier3d/parallel", "num_cpus" ] other-backends = [ "physx", "physx-sys", "glam", "nphysics3d" ] [dependencies] -nalgebra = "0.25" +nalgebra = { version = "0.25", features = [ "rand" ] } kiss3d = { version = "0.30", features = [ "conrod" ] } rand = "0.8" rand_pcg = "0.3" |
