├── .gitignore ├── CMakeLists.txt ├── README.md ├── img └── tree.png ├── include ├── number_generator.hpp ├── pinned_segment.hpp ├── scaffold.hpp ├── tree.hpp ├── tree_builder.hpp ├── tree_renderer.hpp ├── utils.hpp ├── vec2.hpp └── wind.hpp ├── lib └── swarm.hpp ├── res ├── font.ttf ├── font_2.ttf └── leaf.png └── src └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/Tree2D/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/Tree2D/HEAD/README.md -------------------------------------------------------------------------------- /img/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/Tree2D/HEAD/img/tree.png -------------------------------------------------------------------------------- /include/number_generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/Tree2D/HEAD/include/number_generator.hpp -------------------------------------------------------------------------------- /include/pinned_segment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/Tree2D/HEAD/include/pinned_segment.hpp -------------------------------------------------------------------------------- /include/scaffold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/Tree2D/HEAD/include/scaffold.hpp -------------------------------------------------------------------------------- /include/tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/Tree2D/HEAD/include/tree.hpp -------------------------------------------------------------------------------- /include/tree_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/Tree2D/HEAD/include/tree_builder.hpp -------------------------------------------------------------------------------- /include/tree_renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/Tree2D/HEAD/include/tree_renderer.hpp -------------------------------------------------------------------------------- /include/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/Tree2D/HEAD/include/utils.hpp -------------------------------------------------------------------------------- /include/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/Tree2D/HEAD/include/vec2.hpp -------------------------------------------------------------------------------- /include/wind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/Tree2D/HEAD/include/wind.hpp -------------------------------------------------------------------------------- /lib/swarm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/Tree2D/HEAD/lib/swarm.hpp -------------------------------------------------------------------------------- /res/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/Tree2D/HEAD/res/font.ttf -------------------------------------------------------------------------------- /res/font_2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/Tree2D/HEAD/res/font_2.ttf -------------------------------------------------------------------------------- /res/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/Tree2D/HEAD/res/leaf.png -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/Tree2D/HEAD/src/main.cpp --------------------------------------------------------------------------------