add an experiment

This commit is contained in:
Irlan
2018-03-23 15:27:41 -03:00
parent 5a80171744
commit 41aa214a40
2 changed files with 183 additions and 2 deletions

View File

@ -58,8 +58,10 @@
#include <testbed/tests/tumbler.h>
#include <testbed/tests/single_pendulum.h>
#include <testbed/tests/multiple_pendulum.h>
#include <testbed/tests/cloth_test.h>
#include <testbed/tests/rope_test.h>
#include <testbed/tests/cloth_test.h>
#include <testbed/tests/implicit_spring.h>
//#include <testbed/tests/spring_cloth_test.h>
//#include <testbed/tests/tree_test.h>
TestEntry g_tests[] =
@ -104,8 +106,10 @@ TestEntry g_tests[] =
{ "Initial Overlap", &InitialOverlap::Create },
{ "Single Pendulum", &SinglePendulum::Create },
{ "Multiple Pendulum", &MultiplePendulum::Create },
{ "Cloth", &Cloth::Create },
{ "Rope", &Rope::Create },
{ "Implicit Spring", &ImplicitSpring::Create },
{ "Cloth", &Cloth::Create },
//{ "Spring Cloth", &SpringCloth::Create },
//{ "Tree", &Tree::Create },
{ NULL, NULL }
};