improve btMultiBody version of URDF reader (still work-in-progress) enabled planar joint for btMultiBody (untested) enable loading from relative path for .stl meshes
18 lines
361 B
C++
18 lines
361 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);
|
|
virtual void stepSimulation(float deltaTime);
|
|
};
|
|
|
|
#endif //IMPORT_URDF_SETUP_H
|