-
Notifications
You must be signed in to change notification settings - Fork 3
/
sphere_sphere.json
59 lines (59 loc) · 1.18 KB
/
sphere_sphere.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"objects": [
{
"name": "sphere1",
"meshes": [
{
"path": "../data/sphere.obj",
"bvh_type": "points"
}
],
"alpha": 20,
"is_dynamic": true,
"init_state": {
"position": [2,0,0.2],
"rotation": [[1,0,0],[0,1,0],[0,0,1]],
"velocity": [-4,0,0],
"angular_velocity": [0,0,0]
}
},
{
"name": "sphere2",
"meshes": [
{
"path": "../data/sphere.obj",
"bvh_type": "points"
}
],
"alpha": 20,
"is_dynamic": true,
"init_state": {
"position": [-2,0,0.2],
"rotation": [[1,0,0],[0,1,0],[0,0,1]],
"velocity": [4,0,0],
"angular_velocity": [0,0,0]
}
},
{
"name": "plane",
"meshes": [
{
"path": "../data/plane.obj",
"bvh_type": "faces"
}
],
"alpha": 200,
"is_dynamic": false,
"init_state": {
"position": [0,0,0],
"rotation": [[1,0,0],[0,1,0],[0,0,1]]
}
}
],
"gravity": [0,0,0],
"timestep": 0.01,
"num_steps": 50,
"beta": 0.5,
"use_exact_dist": false,
"name": "sphere_sphere"
}