├── .DS_Store ├── .gitignore ├── Example ├── .DS_Store ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── baba.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ ├── Example Debug.xcscheme │ │ └── Example Release.xcscheme ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ ├── .DS_Store │ └── data │ │ ├── .DS_Store │ │ ├── .gitkeep │ │ └── ofxGraph │ │ ├── DIN Alternate Bold.ttf │ │ ├── Multiplot Sample.xml │ │ ├── expand.png │ │ ├── move.png │ │ └── sample.xml ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── README.md ├── ofxGraph.gif ├── ofxaddons_thumbnail.png ├── screenshot.png └── src ├── ofxGraph.cpp └── ofxGraph.h /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/.DS_Store -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcuserdata/baba.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcuserdata/baba.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcuserdata/baba.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcuserdata/baba.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/Example Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/Example Debug.xcscheme -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/Example Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/Example Release.xcscheme -------------------------------------------------------------------------------- /Example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/Makefile -------------------------------------------------------------------------------- /Example/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/Project.xcconfig -------------------------------------------------------------------------------- /Example/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/addons.make -------------------------------------------------------------------------------- /Example/bin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/bin/.DS_Store -------------------------------------------------------------------------------- /Example/bin/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/bin/data/.DS_Store -------------------------------------------------------------------------------- /Example/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/bin/data/ofxGraph/DIN Alternate Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/bin/data/ofxGraph/DIN Alternate Bold.ttf -------------------------------------------------------------------------------- /Example/bin/data/ofxGraph/Multiplot Sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/bin/data/ofxGraph/Multiplot Sample.xml -------------------------------------------------------------------------------- /Example/bin/data/ofxGraph/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/bin/data/ofxGraph/expand.png -------------------------------------------------------------------------------- /Example/bin/data/ofxGraph/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/bin/data/ofxGraph/move.png -------------------------------------------------------------------------------- /Example/bin/data/ofxGraph/sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/bin/data/ofxGraph/sample.xml -------------------------------------------------------------------------------- /Example/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/config.make -------------------------------------------------------------------------------- /Example/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/openFrameworks-Info.plist -------------------------------------------------------------------------------- /Example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/src/main.cpp -------------------------------------------------------------------------------- /Example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/src/ofApp.cpp -------------------------------------------------------------------------------- /Example/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/Example/src/ofApp.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/README.md -------------------------------------------------------------------------------- /ofxGraph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/ofxGraph.gif -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/ofxGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/src/ofxGraph.cpp -------------------------------------------------------------------------------- /src/ofxGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetsuakiBaba/ofxGraph/HEAD/src/ofxGraph.h --------------------------------------------------------------------------------