├── .gitignore ├── CMakeLists.txt ├── Cloth.cpp ├── Cloth.h ├── ClothDemo.cpp ├── Constraint.h ├── LICENSE ├── PatternCloth.jpg ├── PlaidCloth.jpg ├── README.md ├── Screenshot1.jpg └── Screenshot2.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemc0/ClothDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemc0/ClothDemo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Cloth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemc0/ClothDemo/HEAD/Cloth.cpp -------------------------------------------------------------------------------- /Cloth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemc0/ClothDemo/HEAD/Cloth.h -------------------------------------------------------------------------------- /ClothDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemc0/ClothDemo/HEAD/ClothDemo.cpp -------------------------------------------------------------------------------- /Constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemc0/ClothDemo/HEAD/Constraint.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemc0/ClothDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /PatternCloth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemc0/ClothDemo/HEAD/PatternCloth.jpg -------------------------------------------------------------------------------- /PlaidCloth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemc0/ClothDemo/HEAD/PlaidCloth.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemc0/ClothDemo/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemc0/ClothDemo/HEAD/Screenshot1.jpg -------------------------------------------------------------------------------- /Screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davemc0/ClothDemo/HEAD/Screenshot2.jpg --------------------------------------------------------------------------------