aboutsummaryrefslogtreecommitdiffstats
path: root/test/rigid_body_test.cpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-06-22 17:56:01 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-06-22 17:56:01 +0100
commita4b4047e48e435253efea0c188b808995a477d8c (patch)
tree5cbdf491df512043ecfb3e79e6a67cab49b8eec7 /test/rigid_body_test.cpp
parent7f27d3bf881ca3c257ab346c4ef5b6b0d177cdaa (diff)
downloadYAGE-a4b4047e48e435253efea0c188b808995a477d8c.tar.gz
YAGE-a4b4047e48e435253efea0c188b808995a477d8c.zip
Fixing file names
Diffstat (limited to 'test/rigid_body_test.cpp')
-rw-r--r--test/rigid_body_test.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/rigid_body_test.cpp b/test/rigid_body_test.cpp
deleted file mode 100644
index c5683697..00000000
--- a/test/rigid_body_test.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#include "Physics/particlebody.hpp"
-
-#include <iostream>
-
-int main(int, char**)
-{
- yage::ParticleBody body;
- for(int i=0; i<60*3; ++i)
- {
- body.update();
- std::cout<<"position: "<<body.xPosition()<<", "<<body.yPosition()<<"\n";
- }
-
- double ideal_position=0.5*-9.81*3*3;
-
- if(body.yPosition()<ideal_position*0.95 && body.yPosition()>ideal_position*1.05)
- return 0;
- return 1;
-}