add CpuSoftBodyDemo (empty placeholder)

This commit is contained in:
erwincoumans
2013-09-03 08:48:27 -07:00
parent 181a323631
commit b1bab032b1
3 changed files with 417 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#ifndef GPU_SOFTBODY_INTERNAL_DATA_H
#define GPU_SOFTBODY_INTERNAL_DATA_H
//#include "Bullet3OpenCL/Initialize/b3OpenCLUtils.h"
#include "Bullet3Common/b3Vector3.h"
struct CpuSoftBodyDemoInternalData
{
int m_clothShapeIndex;
float* m_clothVertices;
CpuSoftBodyDemoInternalData()
: m_clothShapeIndex(-1),
m_clothVertices(0)
{
}
};
#endif//GPU_SOFTBODY_INTERNAL_DATA_H