mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 19:36:20 +03:00
11 lines
462 B
C++
11 lines
462 B
C++
#ifndef COLLISION_SHAPE_2_GRAPHICS_H
|
|
#define COLLISION_SHAPE_2_GRAPHICS_H
|
|
|
|
#include "LinearMath/btAlignedObjectArray.h"
|
|
#include "LinearMath/btTransform.h"
|
|
class btCollisionShape;
|
|
|
|
void CollisionShape2TriangleMesh(btCollisionShape* collisionShape, const btTransform& parentTransform, btAlignedObjectArray<btVector3>& vertexPositions, btAlignedObjectArray<btVector3>& vertexNormals, btAlignedObjectArray<int>& indicesOut);
|
|
|
|
#endif //COLLISION_SHAPE_2_GRAPHICS_H
|