├── README.md ├── example-basic ├── Makefile ├── addons.make ├── bin │ └── data │ │ └── model.dae ├── config.make └── src │ ├── main.cpp │ └── ofxFakeShadowMap.h ├── example-collision ├── Makefile ├── addons.make ├── bin │ └── data │ │ └── model.dae ├── config.make └── src │ └── main.cpp ├── screen ├── 1.gif └── 2.gif └── src ├── cloth_glm.h ├── ofxCloth.cpp └── ofxCloth.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxCloth/HEAD/README.md -------------------------------------------------------------------------------- /example-basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxCloth/HEAD/example-basic/Makefile -------------------------------------------------------------------------------- /example-basic/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxCloth/HEAD/example-basic/addons.make -------------------------------------------------------------------------------- /example-basic/bin/data/model.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxCloth/HEAD/example-basic/bin/data/model.dae -------------------------------------------------------------------------------- /example-basic/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxCloth/HEAD/example-basic/config.make -------------------------------------------------------------------------------- /example-basic/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxCloth/HEAD/example-basic/src/main.cpp -------------------------------------------------------------------------------- /example-basic/src/ofxFakeShadowMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxCloth/HEAD/example-basic/src/ofxFakeShadowMap.h -------------------------------------------------------------------------------- /example-collision/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxCloth/HEAD/example-collision/Makefile -------------------------------------------------------------------------------- /example-collision/addons.make: -------------------------------------------------------------------------------- 1 | ofxCloth 2 | -------------------------------------------------------------------------------- /example-collision/bin/data/model.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxCloth/HEAD/example-collision/bin/data/model.dae -------------------------------------------------------------------------------- /example-collision/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxCloth/HEAD/example-collision/config.make -------------------------------------------------------------------------------- /example-collision/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxCloth/HEAD/example-collision/src/main.cpp -------------------------------------------------------------------------------- /screen/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxCloth/HEAD/screen/1.gif -------------------------------------------------------------------------------- /screen/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxCloth/HEAD/screen/2.gif -------------------------------------------------------------------------------- /src/cloth_glm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxCloth/HEAD/src/cloth_glm.h -------------------------------------------------------------------------------- /src/ofxCloth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxCloth/HEAD/src/ofxCloth.cpp -------------------------------------------------------------------------------- /src/ofxCloth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxCloth/HEAD/src/ofxCloth.h --------------------------------------------------------------------------------