bullet3/examples/Experiments/ImplicitCloth/stan/Cloth.h

19 lines
313 B
C
Raw Normal View History

2015-04-30 20:36:39 +00:00
#ifndef STAN_CLOTH_H
#define STAN_CLOTH_H
#include "SpringNetwork.h"
class Cloth : public SpringNetwork
{
public:
int w,h;
float3 color; // for debug rendering
Cloth(const char* _name,int _n);
~Cloth();
};
Cloth *ClothCreate(int w,int h,float size);
#endif //STAN_CLOTH_H