├── .gitignore ├── README.md ├── example-camera ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── Default-568h@2x~iphone.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Default@2x~ipad.png │ │ ├── Default@2x~iphone.png │ │ ├── Default~ipad.png │ │ ├── Default~iphone.png │ │ ├── Icon-72.png │ │ ├── Icon-72@2x.png │ │ ├── Icon.png │ │ └── Icon@2x.png ├── ofxCoreMotionCameraExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── ofxCMExample.xcscmblueprint │ │ │ ├── ofxCoreMotion-example.xcscmblueprint │ │ │ ├── ofxCoreMotionCameraExample.xcscmblueprint │ │ │ └── ofxCoreMotionExample.xcscmblueprint │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── ofxCoreMotionCameraExample.xcscheme │ └── xcuserdata │ │ └── julapy.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── ofxiOS-Info.plist ├── ofxiOS_Prefix.pch └── src │ ├── main.mm │ ├── ofApp.h │ └── ofApp.mm ├── example ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── Default-568h@2x~iphone.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Default@2x~ipad.png │ │ ├── Default@2x~iphone.png │ │ ├── Default~ipad.png │ │ ├── Default~iphone.png │ │ ├── Icon-72.png │ │ ├── Icon-72@2x.png │ │ ├── Icon.png │ │ └── Icon@2x.png ├── ofxCoreMotionExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── ofxCMExample.xcscmblueprint │ │ │ ├── ofxCoreMotion-example.xcscmblueprint │ │ │ └── ofxCoreMotionExample.xcscmblueprint │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── ofxCoreMotionExample.xcscheme │ └── xcuserdata │ │ └── julapy.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── ofxiOS-Info.plist ├── ofxiOS_Prefix.pch └── src │ ├── main.mm │ ├── ofApp.h │ └── ofApp.mm ├── screenshot.png └── src ├── ofxCoreMotion.h └── ofxCoreMotion.mm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/README.md -------------------------------------------------------------------------------- /example-camera/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/Project.xcconfig -------------------------------------------------------------------------------- /example-camera/addons.make: -------------------------------------------------------------------------------- 1 | ofxCoreMotion 2 | -------------------------------------------------------------------------------- /example-camera/bin/data/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/bin/data/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /example-camera/bin/data/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/bin/data/Default.png -------------------------------------------------------------------------------- /example-camera/bin/data/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/bin/data/Default@2x.png -------------------------------------------------------------------------------- /example-camera/bin/data/Default@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/bin/data/Default@2x~ipad.png -------------------------------------------------------------------------------- /example-camera/bin/data/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/bin/data/Default@2x~iphone.png -------------------------------------------------------------------------------- /example-camera/bin/data/Default~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/bin/data/Default~ipad.png -------------------------------------------------------------------------------- /example-camera/bin/data/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/bin/data/Default~iphone.png -------------------------------------------------------------------------------- /example-camera/bin/data/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/bin/data/Icon-72.png -------------------------------------------------------------------------------- /example-camera/bin/data/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/bin/data/Icon-72@2x.png -------------------------------------------------------------------------------- /example-camera/bin/data/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/bin/data/Icon.png -------------------------------------------------------------------------------- /example-camera/bin/data/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/bin/data/Icon@2x.png -------------------------------------------------------------------------------- /example-camera/ofxCoreMotionCameraExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/ofxCoreMotionCameraExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-camera/ofxCoreMotionCameraExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/ofxCoreMotionCameraExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example-camera/ofxCoreMotionCameraExample.xcodeproj/project.xcworkspace/xcshareddata/ofxCMExample.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/ofxCoreMotionCameraExample.xcodeproj/project.xcworkspace/xcshareddata/ofxCMExample.xcscmblueprint -------------------------------------------------------------------------------- /example-camera/ofxCoreMotionCameraExample.xcodeproj/project.xcworkspace/xcshareddata/ofxCoreMotion-example.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/ofxCoreMotionCameraExample.xcodeproj/project.xcworkspace/xcshareddata/ofxCoreMotion-example.xcscmblueprint -------------------------------------------------------------------------------- /example-camera/ofxCoreMotionCameraExample.xcodeproj/project.xcworkspace/xcshareddata/ofxCoreMotionCameraExample.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/ofxCoreMotionCameraExample.xcodeproj/project.xcworkspace/xcshareddata/ofxCoreMotionCameraExample.xcscmblueprint -------------------------------------------------------------------------------- /example-camera/ofxCoreMotionCameraExample.xcodeproj/project.xcworkspace/xcshareddata/ofxCoreMotionExample.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/ofxCoreMotionCameraExample.xcodeproj/project.xcworkspace/xcshareddata/ofxCoreMotionExample.xcscmblueprint -------------------------------------------------------------------------------- /example-camera/ofxCoreMotionCameraExample.xcodeproj/xcshareddata/xcschemes/ofxCoreMotionCameraExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/ofxCoreMotionCameraExample.xcodeproj/xcshareddata/xcschemes/ofxCoreMotionCameraExample.xcscheme -------------------------------------------------------------------------------- /example-camera/ofxCoreMotionCameraExample.xcodeproj/xcuserdata/julapy.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/ofxCoreMotionCameraExample.xcodeproj/xcuserdata/julapy.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /example-camera/ofxCoreMotionCameraExample.xcodeproj/xcuserdata/julapy.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/ofxCoreMotionCameraExample.xcodeproj/xcuserdata/julapy.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /example-camera/ofxiOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/ofxiOS-Info.plist -------------------------------------------------------------------------------- /example-camera/ofxiOS_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/ofxiOS_Prefix.pch -------------------------------------------------------------------------------- /example-camera/src/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/src/main.mm -------------------------------------------------------------------------------- /example-camera/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/src/ofApp.h -------------------------------------------------------------------------------- /example-camera/src/ofApp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example-camera/src/ofApp.mm -------------------------------------------------------------------------------- /example/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/Project.xcconfig -------------------------------------------------------------------------------- /example/addons.make: -------------------------------------------------------------------------------- 1 | ofxCoreMotion 2 | -------------------------------------------------------------------------------- /example/bin/data/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/bin/data/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /example/bin/data/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/bin/data/Default.png -------------------------------------------------------------------------------- /example/bin/data/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/bin/data/Default@2x.png -------------------------------------------------------------------------------- /example/bin/data/Default@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/bin/data/Default@2x~ipad.png -------------------------------------------------------------------------------- /example/bin/data/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/bin/data/Default@2x~iphone.png -------------------------------------------------------------------------------- /example/bin/data/Default~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/bin/data/Default~ipad.png -------------------------------------------------------------------------------- /example/bin/data/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/bin/data/Default~iphone.png -------------------------------------------------------------------------------- /example/bin/data/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/bin/data/Icon-72.png -------------------------------------------------------------------------------- /example/bin/data/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/bin/data/Icon-72@2x.png -------------------------------------------------------------------------------- /example/bin/data/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/bin/data/Icon.png -------------------------------------------------------------------------------- /example/bin/data/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/bin/data/Icon@2x.png -------------------------------------------------------------------------------- /example/ofxCoreMotionExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/ofxCoreMotionExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ofxCoreMotionExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/ofxCoreMotionExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ofxCoreMotionExample.xcodeproj/project.xcworkspace/xcshareddata/ofxCMExample.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/ofxCoreMotionExample.xcodeproj/project.xcworkspace/xcshareddata/ofxCMExample.xcscmblueprint -------------------------------------------------------------------------------- /example/ofxCoreMotionExample.xcodeproj/project.xcworkspace/xcshareddata/ofxCoreMotion-example.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/ofxCoreMotionExample.xcodeproj/project.xcworkspace/xcshareddata/ofxCoreMotion-example.xcscmblueprint -------------------------------------------------------------------------------- /example/ofxCoreMotionExample.xcodeproj/project.xcworkspace/xcshareddata/ofxCoreMotionExample.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/ofxCoreMotionExample.xcodeproj/project.xcworkspace/xcshareddata/ofxCoreMotionExample.xcscmblueprint -------------------------------------------------------------------------------- /example/ofxCoreMotionExample.xcodeproj/xcshareddata/xcschemes/ofxCoreMotionExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/ofxCoreMotionExample.xcodeproj/xcshareddata/xcschemes/ofxCoreMotionExample.xcscheme -------------------------------------------------------------------------------- /example/ofxCoreMotionExample.xcodeproj/xcuserdata/julapy.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/ofxCoreMotionExample.xcodeproj/xcuserdata/julapy.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /example/ofxCoreMotionExample.xcodeproj/xcuserdata/julapy.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/ofxCoreMotionExample.xcodeproj/xcuserdata/julapy.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /example/ofxiOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/ofxiOS-Info.plist -------------------------------------------------------------------------------- /example/ofxiOS_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/ofxiOS_Prefix.pch -------------------------------------------------------------------------------- /example/src/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/src/main.mm -------------------------------------------------------------------------------- /example/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/src/ofApp.h -------------------------------------------------------------------------------- /example/src/ofApp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/example/src/ofApp.mm -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/ofxCoreMotion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/src/ofxCoreMotion.h -------------------------------------------------------------------------------- /src/ofxCoreMotion.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trentbrooks/ofxCoreMotion/HEAD/src/ofxCoreMotion.mm --------------------------------------------------------------------------------