├── .gitignore ├── CMakeLists.txt ├── README.md ├── include ├── grass.hpp ├── join.hpp ├── link.hpp ├── solver.hpp ├── tree.hpp ├── utils.hpp ├── vec2.hpp ├── verlet_point.hpp └── wind.hpp └── src └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | build/* -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/GrassSimulator/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/GrassSimulator/HEAD/README.md -------------------------------------------------------------------------------- /include/grass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/GrassSimulator/HEAD/include/grass.hpp -------------------------------------------------------------------------------- /include/join.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/GrassSimulator/HEAD/include/join.hpp -------------------------------------------------------------------------------- /include/link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/GrassSimulator/HEAD/include/link.hpp -------------------------------------------------------------------------------- /include/solver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/GrassSimulator/HEAD/include/solver.hpp -------------------------------------------------------------------------------- /include/tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/GrassSimulator/HEAD/include/tree.hpp -------------------------------------------------------------------------------- /include/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/GrassSimulator/HEAD/include/utils.hpp -------------------------------------------------------------------------------- /include/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/GrassSimulator/HEAD/include/vec2.hpp -------------------------------------------------------------------------------- /include/verlet_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/GrassSimulator/HEAD/include/verlet_point.hpp -------------------------------------------------------------------------------- /include/wind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/GrassSimulator/HEAD/include/wind.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/GrassSimulator/HEAD/src/main.cpp --------------------------------------------------------------------------------