Skip to content

Commit fa588b5

Browse files
committed
fix function name
1 parent 0a8fa41 commit fa588b5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bullet/BulletCollision/CollisionShapes/btConvexHullShape.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ const char* btConvexHullShape::serialize(void* dataBuffer, btSerializer* seriali
206206
return "btConvexHullShapeData";
207207
}
208208

209-
void btConvexHullShape::project(const btTransform& trans, const btVector3& dir, btScalar& minProj, btScalar& maxProj, btVector3& witnesPtMin,btVector3& witnesPtMax) const
209+
void btConvexHullShape::project6(const btTransform& trans, const btVector3& dir, btScalar& minProj, btScalar& maxProj, btVector3& witnesPtMin,btVector3& witnesPtMax) const
210210
{
211211
#if 1
212212
minProj = FLT_MAX;

bullet/BulletCollision/CollisionShapes/btConvexHullShape.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ ATTRIBUTE_ALIGNED16(class) btConvexHullShape : public btPolyhedralConvexAabbCach
7373
virtual void batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const;
7474

7575

76-
virtual void project(const btTransform& trans, const btVector3& dir, btScalar& minProj, btScalar& maxProj, btVector3& witnesPtMin,btVector3& witnesPtMax) const;
76+
void project6(const btTransform& trans, const btVector3& dir, btScalar& minProj, btScalar& maxProj, btVector3& witnesPtMin,btVector3& witnesPtMax) const;
7777

7878

7979
//debugging

0 commit comments

Comments
 (0)