├── .gitignore ├── LICENSE ├── README.md ├── animation.go ├── animation_test.go ├── assets ├── demo.gif └── explanation.png ├── draw.go ├── examples ├── demo │ ├── assets │ │ ├── 1945.png │ │ └── LICENSE.txt │ └── main.go └── gif │ └── example.gif ├── go.mod ├── go.sum ├── grid.go ├── grid_test.go ├── opts.go ├── parser.go └── sprite.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottahmd/ganim8/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottahmd/ganim8/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottahmd/ganim8/HEAD/README.md -------------------------------------------------------------------------------- /animation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottahmd/ganim8/HEAD/animation.go -------------------------------------------------------------------------------- /animation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottahmd/ganim8/HEAD/animation_test.go -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottahmd/ganim8/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /assets/explanation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottahmd/ganim8/HEAD/assets/explanation.png -------------------------------------------------------------------------------- /draw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottahmd/ganim8/HEAD/draw.go -------------------------------------------------------------------------------- /examples/demo/assets/1945.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottahmd/ganim8/HEAD/examples/demo/assets/1945.png -------------------------------------------------------------------------------- /examples/demo/assets/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottahmd/ganim8/HEAD/examples/demo/assets/LICENSE.txt -------------------------------------------------------------------------------- /examples/demo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottahmd/ganim8/HEAD/examples/demo/main.go -------------------------------------------------------------------------------- /examples/gif/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottahmd/ganim8/HEAD/examples/gif/example.gif -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottahmd/ganim8/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottahmd/ganim8/HEAD/go.sum -------------------------------------------------------------------------------- /grid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottahmd/ganim8/HEAD/grid.go -------------------------------------------------------------------------------- /grid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottahmd/ganim8/HEAD/grid_test.go -------------------------------------------------------------------------------- /opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottahmd/ganim8/HEAD/opts.go -------------------------------------------------------------------------------- /parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottahmd/ganim8/HEAD/parser.go -------------------------------------------------------------------------------- /sprite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottahmd/ganim8/HEAD/sprite.go --------------------------------------------------------------------------------