remove unused code

This commit is contained in:
Irlan 2018-04-21 13:13:07 -03:00
parent 2f202ef9f1
commit 97c092f136

View File

@ -53,20 +53,6 @@ struct b3UniqueArray
u32 count;
};
//
template<class T>
static inline u32 b3Find(const T* values, u32 count, const T* value)
{
for (u32 i = 0; i < count; ++i)
{
if (values[i] == value)
{
return i;
}
}
B3_ASSERT(false);
}
//
static b3Vec3 b3ComputeCentroid(b3QHull* hull)
{