├── README.md ├── copy_to_data └── ofxAsciiArt │ ├── images │ └── 8x8.png │ └── shaders │ ├── ascii.frag │ └── ascii.vert ├── example └── src │ ├── gui │ ├── ofBaseGui.h │ ├── ofGui.h │ ├── ofPanel.h │ ├── ofSlider.h │ └── ofToggle.h │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h └── src ├── ofxAsciiArt.cpp └── ofxAsciiArt.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/ofxAsciiArt/HEAD/README.md -------------------------------------------------------------------------------- /copy_to_data/ofxAsciiArt/images/8x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/ofxAsciiArt/HEAD/copy_to_data/ofxAsciiArt/images/8x8.png -------------------------------------------------------------------------------- /copy_to_data/ofxAsciiArt/shaders/ascii.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/ofxAsciiArt/HEAD/copy_to_data/ofxAsciiArt/shaders/ascii.frag -------------------------------------------------------------------------------- /copy_to_data/ofxAsciiArt/shaders/ascii.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/ofxAsciiArt/HEAD/copy_to_data/ofxAsciiArt/shaders/ascii.vert -------------------------------------------------------------------------------- /example/src/gui/ofBaseGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/ofxAsciiArt/HEAD/example/src/gui/ofBaseGui.h -------------------------------------------------------------------------------- /example/src/gui/ofGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/ofxAsciiArt/HEAD/example/src/gui/ofGui.h -------------------------------------------------------------------------------- /example/src/gui/ofPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/ofxAsciiArt/HEAD/example/src/gui/ofPanel.h -------------------------------------------------------------------------------- /example/src/gui/ofSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/ofxAsciiArt/HEAD/example/src/gui/ofSlider.h -------------------------------------------------------------------------------- /example/src/gui/ofToggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/ofxAsciiArt/HEAD/example/src/gui/ofToggle.h -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/ofxAsciiArt/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /example/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/ofxAsciiArt/HEAD/example/src/testApp.cpp -------------------------------------------------------------------------------- /example/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/ofxAsciiArt/HEAD/example/src/testApp.h -------------------------------------------------------------------------------- /src/ofxAsciiArt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/ofxAsciiArt/HEAD/src/ofxAsciiArt.cpp -------------------------------------------------------------------------------- /src/ofxAsciiArt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeehanLax/ofxAsciiArt/HEAD/src/ofxAsciiArt.h --------------------------------------------------------------------------------