fix raycast

This commit is contained in:
Irlan
2017-04-11 11:58:33 -03:00
parent 005d2bc117
commit d082c59754
2 changed files with 32 additions and 28 deletions

View File

@ -35,13 +35,13 @@ public:
void ComputeAABB(b3AABB3* output, const b3Transform& xf) const;
void ComputeAABB(b3AABB3* output, const b3Transform& xf, u32 index) const;
void ComputeAABB(b3AABB3* output, const b3Transform& xf, u32 childIndex) const;
bool TestPoint(const b3Vec3& point, const b3Transform& xf) const;
bool RayCast(b3RayCastOutput* output, const b3RayCastInput& input, const b3Transform& xf) const;
bool RayCast(b3RayCastOutput* output, const b3RayCastInput& input, const b3Transform& xf, u32 index) const;
bool RayCast(b3RayCastOutput* output, const b3RayCastInput& input, const b3Transform& xf, u32 childIndex) const;
const b3Mesh* m_mesh;
};