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
|
# For this test the two objects should fall into the centre with the same
# acceleration, independent of their mass.
#
camera 0.0, 0.0, -1000.0, 0.0;
enable solid;
enable lighting;
disable texture;
collide shatter;
const 1;
scale 10;
body centre,
1000,
0,0,0,
0,0,0,
1,1,1,
0;
light centre,1,1,1;
plane xy;
radial mass1,
10,
centre,
500,
90,
0,
1,0,0,
0;
radial mass2,
20,
centre,
500,
270,
0,
0,1,0,
0;
look centre;
look mass1;
look mass2;
look_at centre;
particles 0.0001,0.0,1.0;
shatter 10,5.0,1,2000,100;
|