diff options
Diffstat (limited to 'test1.dat')
-rw-r--r-- | test1.dat | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/test1.dat b/test1.dat new file mode 100644 index 0000000..d98a851 --- /dev/null +++ b/test1.dat @@ -0,0 +1,51 @@ +# 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 none; + +const 0.001; + +scale 10; + + +body centre, + 100, + 0,0,0, + 0,0,0, + 1,1,1, + 0; + +light centre,1,1,1; + + +plane xy; + +radial mass1, + 1, + centre, + 500, + 90, + 0, + 1,0,0, + 0; + +radial mass2, + 2, + centre, + 500, + 270, + 0, + 0,1,0, + 0; + +look centre; +look mass1; +look mass2; + +look_at centre; |