add Stan Melax' ImplicitCloth demo
This commit is contained in:
18
examples/Experiments/ImplicitCloth/stan/Cloth.h
Normal file
18
examples/Experiments/ImplicitCloth/stan/Cloth.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user