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

19 lines
287 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();
2015-04-30 20:36:39 +00:00
};
Cloth* ClothCreate(int w, int h, float size);
2015-04-30 20:36:39 +00:00
#endif //STAN_CLOTH_H