├── .gitignore ├── .gitmodules ├── example ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── raleway │ │ ├── Raleway-Italic.ttf │ │ ├── Raleway-Medium.ttf │ │ ├── Raleway-SemiBoldItalic.ttf │ │ ├── Raleway-Thin.ttf │ │ └── SIL Open Font License.txt ├── config.make ├── example.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── example Debug.xcscheme │ │ └── example Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── ofxaddons_thumbnail.png ├── readme-img └── layout-example.png ├── readme.md └── src ├── ofxParagraph.cpp └── ofxParagraph.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/.gitmodules -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/example/Project.xcconfig -------------------------------------------------------------------------------- /example/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/bin/data/raleway/Raleway-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/example/bin/data/raleway/Raleway-Italic.ttf -------------------------------------------------------------------------------- /example/bin/data/raleway/Raleway-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/example/bin/data/raleway/Raleway-Medium.ttf -------------------------------------------------------------------------------- /example/bin/data/raleway/Raleway-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/example/bin/data/raleway/Raleway-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /example/bin/data/raleway/Raleway-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/example/bin/data/raleway/Raleway-Thin.ttf -------------------------------------------------------------------------------- /example/bin/data/raleway/SIL Open Font License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/example/bin/data/raleway/SIL Open Font License.txt -------------------------------------------------------------------------------- /example/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/example/config.make -------------------------------------------------------------------------------- /example/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/example/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/example.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/example/example.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme -------------------------------------------------------------------------------- /example/example.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/example/example.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme -------------------------------------------------------------------------------- /example/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/example/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/example/src/ofApp.cpp -------------------------------------------------------------------------------- /example/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/example/src/ofApp.h -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /readme-img/layout-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/readme-img/layout-example.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/readme.md -------------------------------------------------------------------------------- /src/ofxParagraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/src/ofxParagraph.cpp -------------------------------------------------------------------------------- /src/ofxParagraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braitsch/ofxParagraph/HEAD/src/ofxParagraph.h --------------------------------------------------------------------------------