mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 05:40:05 +00:00
10 lines
342 B
C
10 lines
342 B
C
#ifndef LINK_VISUAL_SHAPES_CONVERTER_H
|
|
#define LINK_VISUAL_SHAPES_CONVERTER_H
|
|
|
|
struct LinkVisualShapesConverter
|
|
{
|
|
virtual void convertVisualShapes(int linkIndex, const char* pathPrefix, const class btTransform& localInertiaFrame, const struct UrdfModel& model, class btCollisionObject* colObj)=0;
|
|
};
|
|
|
|
#endif //LINK_VISUAL_SHAPES_CONVERTER_H
|