├── .cproject ├── .gitignore ├── .project ├── LICENSE ├── README ├── example-map ├── Makefile ├── Project.xcconfig ├── addons.make ├── config.make ├── example-map.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── bakercp.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── example-map Debug.xcscheme │ │ │ └── example-map Release.xcscheme │ └── xcuserdata │ │ └── bakercp.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example ├── Makefile ├── Project.xcconfig ├── addons.make ├── config.make ├── example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── bakercp.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── example Debug.xcscheme │ │ │ └── example Release.xcscheme │ └── xcuserdata │ │ └── bakercp.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h └── src ├── Easings ├── easing_terms_of_use.html ├── ofxEasing.cpp ├── ofxEasing.h ├── ofxEasingBack.cpp ├── ofxEasingBack.h ├── ofxEasingBounce.cpp ├── ofxEasingBounce.h ├── ofxEasingCirc.cpp ├── ofxEasingCirc.h ├── ofxEasingCubic.cpp ├── ofxEasingCubic.h ├── ofxEasingElastic.cpp ├── ofxEasingElastic.h ├── ofxEasingExpo.cpp ├── ofxEasingExpo.h ├── ofxEasingLinear.cpp ├── ofxEasingLinear.h ├── ofxEasingQuad.cpp ├── ofxEasingQuad.h ├── ofxEasingQuart.cpp ├── ofxEasingQuart.h ├── ofxEasingQuint.cpp ├── ofxEasingQuint.h ├── ofxEasingSine.cpp └── ofxEasingSine.h ├── ofxTween.cpp └── ofxTween.h /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/.project -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/README -------------------------------------------------------------------------------- /example-map/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example-map/Makefile -------------------------------------------------------------------------------- /example-map/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example-map/Project.xcconfig -------------------------------------------------------------------------------- /example-map/addons.make: -------------------------------------------------------------------------------- 1 | ofxTween 2 | -------------------------------------------------------------------------------- /example-map/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example-map/config.make -------------------------------------------------------------------------------- /example-map/example-map.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example-map/example-map.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-map/example-map.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example-map/example-map.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example-map/example-map.xcodeproj/project.xcworkspace/xcuserdata/bakercp.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example-map/example-map.xcodeproj/project.xcworkspace/xcuserdata/bakercp.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /example-map/example-map.xcodeproj/xcshareddata/xcschemes/example-map Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example-map/example-map.xcodeproj/xcshareddata/xcschemes/example-map Debug.xcscheme -------------------------------------------------------------------------------- /example-map/example-map.xcodeproj/xcshareddata/xcschemes/example-map Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example-map/example-map.xcodeproj/xcshareddata/xcschemes/example-map Release.xcscheme -------------------------------------------------------------------------------- /example-map/example-map.xcodeproj/xcuserdata/bakercp.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example-map/example-map.xcodeproj/xcuserdata/bakercp.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /example-map/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example-map/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-map/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example-map/src/main.cpp -------------------------------------------------------------------------------- /example-map/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example-map/src/ofApp.cpp -------------------------------------------------------------------------------- /example-map/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example-map/src/ofApp.h -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example/Project.xcconfig -------------------------------------------------------------------------------- /example/addons.make: -------------------------------------------------------------------------------- 1 | ofxTween 2 | -------------------------------------------------------------------------------- /example/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example/config.make -------------------------------------------------------------------------------- /example/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example/example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/example.xcodeproj/project.xcworkspace/xcuserdata/bakercp.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example/example.xcodeproj/project.xcworkspace/xcuserdata/bakercp.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /example/example.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example/example.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme -------------------------------------------------------------------------------- /example/example.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example/example.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme -------------------------------------------------------------------------------- /example/example.xcodeproj/xcuserdata/bakercp.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example/example.xcodeproj/xcuserdata/bakercp.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /example/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example/src/ofApp.cpp -------------------------------------------------------------------------------- /example/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/example/src/ofApp.h -------------------------------------------------------------------------------- /src/Easings/easing_terms_of_use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/easing_terms_of_use.html -------------------------------------------------------------------------------- /src/Easings/ofxEasing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasing.cpp -------------------------------------------------------------------------------- /src/Easings/ofxEasing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasing.h -------------------------------------------------------------------------------- /src/Easings/ofxEasingBack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingBack.cpp -------------------------------------------------------------------------------- /src/Easings/ofxEasingBack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingBack.h -------------------------------------------------------------------------------- /src/Easings/ofxEasingBounce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingBounce.cpp -------------------------------------------------------------------------------- /src/Easings/ofxEasingBounce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingBounce.h -------------------------------------------------------------------------------- /src/Easings/ofxEasingCirc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingCirc.cpp -------------------------------------------------------------------------------- /src/Easings/ofxEasingCirc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingCirc.h -------------------------------------------------------------------------------- /src/Easings/ofxEasingCubic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingCubic.cpp -------------------------------------------------------------------------------- /src/Easings/ofxEasingCubic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingCubic.h -------------------------------------------------------------------------------- /src/Easings/ofxEasingElastic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingElastic.cpp -------------------------------------------------------------------------------- /src/Easings/ofxEasingElastic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingElastic.h -------------------------------------------------------------------------------- /src/Easings/ofxEasingExpo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingExpo.cpp -------------------------------------------------------------------------------- /src/Easings/ofxEasingExpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingExpo.h -------------------------------------------------------------------------------- /src/Easings/ofxEasingLinear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingLinear.cpp -------------------------------------------------------------------------------- /src/Easings/ofxEasingLinear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingLinear.h -------------------------------------------------------------------------------- /src/Easings/ofxEasingQuad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingQuad.cpp -------------------------------------------------------------------------------- /src/Easings/ofxEasingQuad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingQuad.h -------------------------------------------------------------------------------- /src/Easings/ofxEasingQuart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingQuart.cpp -------------------------------------------------------------------------------- /src/Easings/ofxEasingQuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingQuart.h -------------------------------------------------------------------------------- /src/Easings/ofxEasingQuint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingQuint.cpp -------------------------------------------------------------------------------- /src/Easings/ofxEasingQuint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingQuint.h -------------------------------------------------------------------------------- /src/Easings/ofxEasingSine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingSine.cpp -------------------------------------------------------------------------------- /src/Easings/ofxEasingSine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/Easings/ofxEasingSine.h -------------------------------------------------------------------------------- /src/ofxTween.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/ofxTween.cpp -------------------------------------------------------------------------------- /src/ofxTween.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturoc/ofxTween/HEAD/src/ofxTween.h --------------------------------------------------------------------------------