This code doews not compile
int numVertices = L->size();
hkVector4 * vertices = new hkVector4[numVertices];
1>Source\Scenario\GameObject.cpp(735): error C2660: 'hkVector4::operator new[]' : function does not take 1 arguments
I am trying to make a hkpConvexVerticesShape as in the manual, but the manual has a directly coded array like...
float vertices[] =
{
-2.0f, 2.0f, 1.0f, 0.0f, // v0
1.0f, 3.0f, 0.0f, 0.0f, // v1
0.0f, 1.0f, 3.0f, 0.0f, // v2
1.0f, 0.0f, 0.0f, 0.0f // v3
};
