mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 22:00:05 +00:00
e2d596f4d0
(thanks to Jeff Bingham for reporting the bug!)
18 lines
525 B
C++
18 lines
525 B
C++
#ifndef LINK_VISUAL_SHAPES_CONVERTER_H
|
|
#define LINK_VISUAL_SHAPES_CONVERTER_H
|
|
|
|
struct UrdfLink;
|
|
struct UrdfModel;
|
|
class btTransform;
|
|
class btCollisionObject;
|
|
|
|
struct LinkVisualShapesConverter
|
|
{
|
|
virtual void convertVisualShapes(int linkIndex, const char* pathPrefix, const btTransform& localInertiaFrame, const UrdfLink* linkPtr, const UrdfModel* model, class btCollisionObject* colShape, int objectIndex) =0;
|
|
|
|
virtual void removeVisualShape(class btCollisionObject* colObj)=0;
|
|
|
|
};
|
|
|
|
#endif //LINK_VISUAL_SHAPES_CONVERTER_H
|