├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin └── README.md ├── font └── font_ML.ppm ├── output └── README.md ├── src ├── README.md ├── ball.c ├── make_poster.c ├── mandelbrot.c ├── planet.c ├── pulsar.c ├── sinc.c ├── torus.c └── waggle.c ├── texture └── README.md └── thumbs ├── README.md ├── ball.jpg ├── mandelbrot.jpg ├── planet.jpg ├── pulsar.jpg ├── sinc.jpg ├── torus.jpg └── waggle.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/README.md -------------------------------------------------------------------------------- /bin/README.md: -------------------------------------------------------------------------------- 1 | # bin - location for binaries 2 | -------------------------------------------------------------------------------- /font/font_ML.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/font/font_ML.ppm -------------------------------------------------------------------------------- /output/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/output/README.md -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- 1 | # src - soruce files 2 | -------------------------------------------------------------------------------- /src/ball.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/src/ball.c -------------------------------------------------------------------------------- /src/make_poster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/src/make_poster.c -------------------------------------------------------------------------------- /src/mandelbrot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/src/mandelbrot.c -------------------------------------------------------------------------------- /src/planet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/src/planet.c -------------------------------------------------------------------------------- /src/pulsar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/src/pulsar.c -------------------------------------------------------------------------------- /src/sinc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/src/sinc.c -------------------------------------------------------------------------------- /src/torus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/src/torus.c -------------------------------------------------------------------------------- /src/waggle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/src/waggle.c -------------------------------------------------------------------------------- /texture/README.md: -------------------------------------------------------------------------------- 1 | # Texture are stored here 2 | -------------------------------------------------------------------------------- /thumbs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/thumbs/README.md -------------------------------------------------------------------------------- /thumbs/ball.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/thumbs/ball.jpg -------------------------------------------------------------------------------- /thumbs/mandelbrot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/thumbs/mandelbrot.jpg -------------------------------------------------------------------------------- /thumbs/planet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/thumbs/planet.jpg -------------------------------------------------------------------------------- /thumbs/pulsar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/thumbs/pulsar.jpg -------------------------------------------------------------------------------- /thumbs/sinc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/thumbs/sinc.jpg -------------------------------------------------------------------------------- /thumbs/torus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/thumbs/torus.jpg -------------------------------------------------------------------------------- /thumbs/waggle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamsternz/ProgrammingPosters/HEAD/thumbs/waggle.jpg --------------------------------------------------------------------------------