Add 'createCollisionObjectGraphicsObject' API for CommonPhysicsSetup Add 'pthread' dependency as workaround for NVIDIA graphics driver issue (see //See https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-319/+bug/1248642 )
17 lines
314 B
C++
17 lines
314 B
C++
#ifndef IMPORT_URDF_SETUP_H
|
|
#define IMPORT_URDF_SETUP_H
|
|
|
|
|
|
#include "../../Demos/CommonMultiBodySetup.h"
|
|
|
|
class ImportUrdfDemo : public CommonMultiBodySetup
|
|
{
|
|
public:
|
|
ImportUrdfDemo();
|
|
virtual ~ImportUrdfDemo();
|
|
|
|
virtual void initPhysics(GraphicsPhysicsBridge& gfxBridge);
|
|
};
|
|
|
|
#endif //IMPORT_URDF_SETUP_H
|