aboutsummaryrefslogtreecommitdiff
path: root/examples2d/locked_rotations2.rs
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2022-03-19 16:23:09 +0100
committerSébastien Crozet <sebastien@crozet.re>2022-03-20 21:49:16 +0100
commita9e3441ecd64d50b478ab5370fabe187ec9a5c39 (patch)
tree92b2e4ee3d3599a446f15551cc74e8e71b9c6150 /examples2d/locked_rotations2.rs
parentdb6a8c526d939a125485c89cfb6e540422fe6b4b (diff)
downloadrapier-a9e3441ecd64d50b478ab5370fabe187ec9a5c39.tar.gz
rapier-a9e3441ecd64d50b478ab5370fabe187ec9a5c39.tar.bz2
rapier-a9e3441ecd64d50b478ab5370fabe187ec9a5c39.zip
Rename rigid-body `static` to `fixed`
Diffstat (limited to 'examples2d/locked_rotations2.rs')
-rw-r--r--examples2d/locked_rotations2.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples2d/locked_rotations2.rs b/examples2d/locked_rotations2.rs
index c9d74be..35b1549 100644
--- a/examples2d/locked_rotations2.rs
+++ b/examples2d/locked_rotations2.rs
@@ -19,7 +19,7 @@ pub fn init_world(testbed: &mut Testbed) {
let ground_size = 5.0;
let ground_height = 0.1;
- let rigid_body = RigidBodyBuilder::new_static().translation(vector![0.0, -ground_height]);
+ let rigid_body = RigidBodyBuilder::fixed().translation(vector![0.0, -ground_height]);
let handle = bodies.insert(rigid_body);
let collider = ColliderBuilder::cuboid(ground_size, ground_height);
colliders.insert_with_parent(collider, handle, &mut bodies);
@@ -27,7 +27,7 @@ pub fn init_world(testbed: &mut Testbed) {
/*
* A rectangle that only rotate.
*/
- let rigid_body = RigidBodyBuilder::new_dynamic()
+ let rigid_body = RigidBodyBuilder::dynamic()
.translation(vector![0.0, 3.0])
.lock_translations();
let handle = bodies.insert(rigid_body);
@@ -37,7 +37,7 @@ pub fn init_world(testbed: &mut Testbed) {
/*
* A tilted capsule that cannot rotate.
*/
- let rigid_body = RigidBodyBuilder::new_dynamic()
+ let rigid_body = RigidBodyBuilder::dynamic()
.translation(vector![0.0, 5.0])
.rotation(1.0)
.lock_rotations();