├── 3dp.c ├── README.md ├── ani_lines.c ├── fire ├── fire_1 │ └── fire.c └── fire_2 │ ├── app │ ├── main.c │ ├── renderer.c │ ├── renderer.h │ ├── vector.c │ └── vector.h ├── flame_lines.c ├── metaballs ├── .main.c.swp ├── LICENSE ├── README.md ├── main.c ├── renderer.c ├── renderer.h ├── vector.c └── vector.h ├── moire.c ├── rotozoomer ├── rotozoom.c ├── smile.bmp ├── vector.c └── vector.h ├── scroller ├── 260.bmp ├── main.c ├── main_2.c ├── renderer.c ├── renderer.h ├── vector.c └── vector.h ├── shadebob.c ├── sine_scroller.c ├── stars ├── stars_1 │ ├── main.c │ ├── renderer.c │ ├── renderer.h │ ├── stars.c │ ├── stars.h │ ├── vector.c │ └── vector.h └── stars_2 │ ├── main.c │ ├── renderer.c │ ├── renderer.h │ ├── stars.c │ ├── stars.h │ ├── vector.c │ └── vector.h ├── twister ├── README.md ├── app ├── main.c ├── renderer.c ├── renderer.h ├── vector.c └── vector.h └── vectorballs ├── README.md ├── main.c ├── renderer.c ├── renderer.h ├── vector.c └── vector.h /3dp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/3dp.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/README.md -------------------------------------------------------------------------------- /ani_lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/ani_lines.c -------------------------------------------------------------------------------- /fire/fire_1/fire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/fire/fire_1/fire.c -------------------------------------------------------------------------------- /fire/fire_2/app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/fire/fire_2/app -------------------------------------------------------------------------------- /fire/fire_2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/fire/fire_2/main.c -------------------------------------------------------------------------------- /fire/fire_2/renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/fire/fire_2/renderer.c -------------------------------------------------------------------------------- /fire/fire_2/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/fire/fire_2/renderer.h -------------------------------------------------------------------------------- /fire/fire_2/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/fire/fire_2/vector.c -------------------------------------------------------------------------------- /fire/fire_2/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/fire/fire_2/vector.h -------------------------------------------------------------------------------- /flame_lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/flame_lines.c -------------------------------------------------------------------------------- /metaballs/.main.c.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/metaballs/.main.c.swp -------------------------------------------------------------------------------- /metaballs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/metaballs/LICENSE -------------------------------------------------------------------------------- /metaballs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/metaballs/README.md -------------------------------------------------------------------------------- /metaballs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/metaballs/main.c -------------------------------------------------------------------------------- /metaballs/renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/metaballs/renderer.c -------------------------------------------------------------------------------- /metaballs/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/metaballs/renderer.h -------------------------------------------------------------------------------- /metaballs/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/metaballs/vector.c -------------------------------------------------------------------------------- /metaballs/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/metaballs/vector.h -------------------------------------------------------------------------------- /moire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/moire.c -------------------------------------------------------------------------------- /rotozoomer/rotozoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/rotozoomer/rotozoom.c -------------------------------------------------------------------------------- /rotozoomer/smile.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/rotozoomer/smile.bmp -------------------------------------------------------------------------------- /rotozoomer/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/rotozoomer/vector.c -------------------------------------------------------------------------------- /rotozoomer/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/rotozoomer/vector.h -------------------------------------------------------------------------------- /scroller/260.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/scroller/260.bmp -------------------------------------------------------------------------------- /scroller/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/scroller/main.c -------------------------------------------------------------------------------- /scroller/main_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/scroller/main_2.c -------------------------------------------------------------------------------- /scroller/renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/scroller/renderer.c -------------------------------------------------------------------------------- /scroller/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/scroller/renderer.h -------------------------------------------------------------------------------- /scroller/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/scroller/vector.c -------------------------------------------------------------------------------- /scroller/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/scroller/vector.h -------------------------------------------------------------------------------- /shadebob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/shadebob.c -------------------------------------------------------------------------------- /sine_scroller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/sine_scroller.c -------------------------------------------------------------------------------- /stars/stars_1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/stars/stars_1/main.c -------------------------------------------------------------------------------- /stars/stars_1/renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/stars/stars_1/renderer.c -------------------------------------------------------------------------------- /stars/stars_1/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/stars/stars_1/renderer.h -------------------------------------------------------------------------------- /stars/stars_1/stars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/stars/stars_1/stars.c -------------------------------------------------------------------------------- /stars/stars_1/stars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/stars/stars_1/stars.h -------------------------------------------------------------------------------- /stars/stars_1/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/stars/stars_1/vector.c -------------------------------------------------------------------------------- /stars/stars_1/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/stars/stars_1/vector.h -------------------------------------------------------------------------------- /stars/stars_2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/stars/stars_2/main.c -------------------------------------------------------------------------------- /stars/stars_2/renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/stars/stars_2/renderer.c -------------------------------------------------------------------------------- /stars/stars_2/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/stars/stars_2/renderer.h -------------------------------------------------------------------------------- /stars/stars_2/stars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/stars/stars_2/stars.c -------------------------------------------------------------------------------- /stars/stars_2/stars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/stars/stars_2/stars.h -------------------------------------------------------------------------------- /stars/stars_2/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/stars/stars_2/vector.c -------------------------------------------------------------------------------- /stars/stars_2/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/stars/stars_2/vector.h -------------------------------------------------------------------------------- /twister/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/twister/README.md -------------------------------------------------------------------------------- /twister/app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/twister/app -------------------------------------------------------------------------------- /twister/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/twister/main.c -------------------------------------------------------------------------------- /twister/renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/twister/renderer.c -------------------------------------------------------------------------------- /twister/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/twister/renderer.h -------------------------------------------------------------------------------- /twister/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/twister/vector.c -------------------------------------------------------------------------------- /twister/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/twister/vector.h -------------------------------------------------------------------------------- /vectorballs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/vectorballs/README.md -------------------------------------------------------------------------------- /vectorballs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/vectorballs/main.c -------------------------------------------------------------------------------- /vectorballs/renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/vectorballs/renderer.c -------------------------------------------------------------------------------- /vectorballs/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/vectorballs/renderer.h -------------------------------------------------------------------------------- /vectorballs/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/vectorballs/vector.c -------------------------------------------------------------------------------- /vectorballs/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightcrank/demo-effects/HEAD/vectorballs/vector.h --------------------------------------------------------------------------------