├── .gitattributes ├── .gitignore ├── Makefile ├── README.md ├── header └── simulation.h ├── res ├── gradient.png ├── heart.png ├── letter.png └── letter2.png ├── src ├── main.cpp └── throwingTrack.cpp └── throwingTrack.gif /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamyoukou/sdf2d/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | result/ 2 | video/ 3 | test 4 | *.o 5 | main 6 | *.mp4 7 | throwingTrack 8 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamyoukou/sdf2d/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamyoukou/sdf2d/HEAD/README.md -------------------------------------------------------------------------------- /header/simulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamyoukou/sdf2d/HEAD/header/simulation.h -------------------------------------------------------------------------------- /res/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamyoukou/sdf2d/HEAD/res/gradient.png -------------------------------------------------------------------------------- /res/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamyoukou/sdf2d/HEAD/res/heart.png -------------------------------------------------------------------------------- /res/letter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamyoukou/sdf2d/HEAD/res/letter.png -------------------------------------------------------------------------------- /res/letter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamyoukou/sdf2d/HEAD/res/letter2.png -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamyoukou/sdf2d/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/throwingTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamyoukou/sdf2d/HEAD/src/throwingTrack.cpp -------------------------------------------------------------------------------- /throwingTrack.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamyoukou/sdf2d/HEAD/throwingTrack.gif --------------------------------------------------------------------------------