@@ -11,9 +11,9 @@ int main()
11
11
12
12
// ======================================== Phase 1: Init Simulation World Info ========================================
13
13
14
- HINASIM::RigidBody sphere1 (PBD_MODEL_DIR + std::string (" sphere.obj" ), {0 , -3 , 0 }, {70 , 40 , 20 }, {5 , 5 , 5 });
14
+ HINASIM::RigidBody sphere1 (PBD_MODEL_DIR + std::string (" sphere.obj" ), {0 , -50 , 0 }, {0 , 0 , 0 }, {50 , 50 , 50 });
15
15
HINASIM::RigidBody sphere2 (PBD_MODEL_DIR + std::string (" sphere.obj" ), {1 , 4 , 0 }, {-70 , -40 , -20 }, {1 , 1 , 1 });
16
- HINASIM::RigidBody sphere3 (PBD_MODEL_DIR + std::string (" sphere.obj" ), {-1 , 6 , 0 }, {0 , 0 , 0 }, {1 , 1 , 1 });
16
+ HINASIM::RigidBody sphere3 (PBD_MODEL_DIR + std::string (" sphere.obj" ), {-1 , 6 , 0 }, {70 , 40 , 20 }, {1 , 1 , 1 });
17
17
HINASIM::RigidBody sphere4 (PBD_MODEL_DIR + std::string (" sphere.obj" ), {0 , 8 , -1 }, {0 , 0 , 0 }, {1 , 1 , 1 });
18
18
HINASIM::RigidBody sphere5 (PBD_MODEL_DIR + std::string (" sphere.obj" ), {0 , 10 , 1 }, {0 , 0 , 0 }, {1 , 1 , 1 });
19
19
HINASIM::RigidBody sphere6 (PBD_MODEL_DIR + std::string (" sphere.obj" ), {0 , 12 , 0 }, {0 , 0 , 0 }, {1 , 1 , 1 });
@@ -36,12 +36,12 @@ int main()
36
36
cd.add_collider_sphere (&sphere5);
37
37
cd.add_collider_sphere (&sphere6);
38
38
39
- pbd_viewer.record (&sphere2 );
39
+ pbd_viewer.record (&sphere1 );
40
40
pbd_viewer.record (&sphere3);
41
41
pbd_viewer.record (&sphere4);
42
42
pbd_viewer.record (&sphere5);
43
43
pbd_viewer.record (&sphere6);
44
- pbd_viewer.record (&sphere1 );
44
+ pbd_viewer.record (&sphere2 );
45
45
46
46
// ======================================== Phase 2: Set Up Simulation Thread ========================================
47
47
0 commit comments