mix physics client/server into a single example for easier/faster development of shared memory experiment

add premake option to choose targetdir for binaries/libraries
add simple hinge.urdf file
This commit is contained in:
erwin coumans
2015-07-15 12:57:45 -07:00
parent a6fa717dac
commit 259bcb1989
8 changed files with 285 additions and 6 deletions

View File

@@ -39,8 +39,6 @@ public:
virtual void stepSimulation(float deltaTime);
bool loadUrdf(const char* fileName, const btVector3& pos, const btQuaternion& orn,
bool useMultiBody, bool useFixedBase);
virtual void resetCamera()
{
@@ -59,7 +57,7 @@ PhysicsServerExample::PhysicsServerExample(GUIHelperInterface* helper)
m_wantsShutdown(false)
{
b3Printf("Started PhysicsServer\n");
bool useServer = true;
}