├── .gitattributes ├── .gitignore ├── DecorateYourRoom ├── DecorateYourRoom.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── DecorateYourRoom.xcscheme └── DecorateYourRoom │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── chairbg.imageset │ │ ├── Contents.json │ │ └── chairbg.png │ ├── gramophonebg.imageset │ │ ├── Contents.json │ │ └── gramophonebg.png │ ├── lampbg.imageset │ │ ├── Contents.json │ │ └── lampbg.png │ └── plantbg.imageset │ │ ├── Contents.json │ │ └── plantbg.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ModelManager.swift │ ├── Reticle.swift │ ├── ViewController.swift │ └── art.scnassets │ ├── BlueLamp │ ├── materials.mtl │ └── model-triangulated.scn │ ├── Gramophone │ ├── materials.mtl │ └── model-triangulated.scn │ ├── Plant │ ├── PUSHILIN_plant.mtl │ ├── PUSHILIN_plant.png │ └── PUSHILIN_plant.scn │ └── WoodChair │ ├── CHAHIN_WOODEN_CHAIR.mtl │ ├── CHAHIN_WOODEN_CHAIR.scn │ └── CHAHIN_WOODEN_CHAIR_TEXTURE.jpg ├── HelloWorld ├── HelloWorld.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── HelloWorld.xcscheme └── HelloWorld │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.swift │ └── art.scnassets │ ├── ship.scn │ └── texture.png ├── PlacenoteSDKExample.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings ├── Podfile ├── Podfile.lock ├── Pods ├── Manifest.lock ├── PlacenoteSDK │ ├── CameraManager.swift │ ├── Data.bin │ ├── Event.swift │ ├── FeaturePointVisualizer.swift │ ├── LICENSE │ ├── LibPlacenote.swift │ ├── LocalizationThumbnailSelector.swift │ ├── MulticastDelegate.swift │ ├── Placenote.framework │ │ ├── Headers │ │ │ ├── Placenote.h │ │ │ └── libPlacenote.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── Placenote │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── UIImageUtil.swift │ └── include │ │ └── PlacenoteSDK-Bridging-Header.h ├── Pods.xcodeproj │ └── project.pbxproj └── Target Support Files │ ├── PlacenoteSDK │ ├── Info.plist │ ├── PlacenoteSDK-Info.plist │ ├── PlacenoteSDK-dummy.m │ ├── PlacenoteSDK-prefix.pch │ ├── PlacenoteSDK-umbrella.h │ ├── PlacenoteSDK.modulemap │ └── PlacenoteSDK.xcconfig │ ├── Pods-DecorateYourRoom │ ├── Info.plist │ ├── Pods-DecorateYourRoom-Info.plist │ ├── Pods-DecorateYourRoom-acknowledgements.markdown │ ├── Pods-DecorateYourRoom-acknowledgements.plist │ ├── Pods-DecorateYourRoom-dummy.m │ ├── Pods-DecorateYourRoom-frameworks-Debug-input-files.xcfilelist │ ├── Pods-DecorateYourRoom-frameworks-Debug-output-files.xcfilelist │ ├── Pods-DecorateYourRoom-frameworks-Release-input-files.xcfilelist │ ├── Pods-DecorateYourRoom-frameworks-Release-output-files.xcfilelist │ ├── Pods-DecorateYourRoom-frameworks.sh │ ├── Pods-DecorateYourRoom-resources.sh │ ├── Pods-DecorateYourRoom-umbrella.h │ ├── Pods-DecorateYourRoom.debug.xcconfig │ ├── Pods-DecorateYourRoom.modulemap │ └── Pods-DecorateYourRoom.release.xcconfig │ ├── Pods-HelloWorld │ ├── Info.plist │ ├── Pods-HelloWorld-Info.plist │ ├── Pods-HelloWorld-acknowledgements.markdown │ ├── Pods-HelloWorld-acknowledgements.plist │ ├── Pods-HelloWorld-dummy.m │ ├── Pods-HelloWorld-frameworks-Debug-input-files.xcfilelist │ ├── Pods-HelloWorld-frameworks-Debug-output-files.xcfilelist │ ├── Pods-HelloWorld-frameworks-Release-input-files.xcfilelist │ ├── Pods-HelloWorld-frameworks-Release-output-files.xcfilelist │ ├── Pods-HelloWorld-frameworks.sh │ ├── Pods-HelloWorld-resources.sh │ ├── Pods-HelloWorld-umbrella.h │ ├── Pods-HelloWorld.debug.xcconfig │ ├── Pods-HelloWorld.modulemap │ └── Pods-HelloWorld.release.xcconfig │ └── Pods-RandomShapes │ ├── Info.plist │ ├── Pods-RandomShapes-Info.plist │ ├── Pods-RandomShapes-acknowledgements.markdown │ ├── Pods-RandomShapes-acknowledgements.plist │ ├── Pods-RandomShapes-dummy.m │ ├── Pods-RandomShapes-frameworks-Debug-input-files.xcfilelist │ ├── Pods-RandomShapes-frameworks-Debug-output-files.xcfilelist │ ├── Pods-RandomShapes-frameworks-Release-input-files.xcfilelist │ ├── Pods-RandomShapes-frameworks-Release-output-files.xcfilelist │ ├── Pods-RandomShapes-frameworks.sh │ ├── Pods-RandomShapes-resources.sh │ ├── Pods-RandomShapes-umbrella.h │ ├── Pods-RandomShapes.debug.xcconfig │ ├── Pods-RandomShapes.modulemap │ └── Pods-RandomShapes.release.xcconfig ├── README.md ├── RandomShapes ├── RandomShapes.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── RandomShapes.xcscheme └── RandomShapes │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── RandomName.swift │ ├── ShapeManager.swift │ ├── ShapeType.swift │ └── ViewController.swift └── license ├── LICENSE ├── License.DBoW2 ├── License.OpenCV ├── License.curly ├── License.g2o ├── License.gtsam └── License.libPlacenote /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom.xcodeproj/xcshareddata/xcschemes/DecorateYourRoom.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom.xcodeproj/xcshareddata/xcschemes/DecorateYourRoom.xcscheme -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/AppDelegate.swift -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/Assets.xcassets/chairbg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/Assets.xcassets/chairbg.imageset/Contents.json -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/Assets.xcassets/chairbg.imageset/chairbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/Assets.xcassets/chairbg.imageset/chairbg.png -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/Assets.xcassets/gramophonebg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/Assets.xcassets/gramophonebg.imageset/Contents.json -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/Assets.xcassets/gramophonebg.imageset/gramophonebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/Assets.xcassets/gramophonebg.imageset/gramophonebg.png -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/Assets.xcassets/lampbg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/Assets.xcassets/lampbg.imageset/Contents.json -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/Assets.xcassets/lampbg.imageset/lampbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/Assets.xcassets/lampbg.imageset/lampbg.png -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/Assets.xcassets/plantbg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/Assets.xcassets/plantbg.imageset/Contents.json -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/Assets.xcassets/plantbg.imageset/plantbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/Assets.xcassets/plantbg.imageset/plantbg.png -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/Info.plist -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/ModelManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/ModelManager.swift -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/Reticle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/Reticle.swift -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/ViewController.swift -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/art.scnassets/BlueLamp/materials.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/art.scnassets/BlueLamp/materials.mtl -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/art.scnassets/BlueLamp/model-triangulated.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/art.scnassets/BlueLamp/model-triangulated.scn -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/art.scnassets/Gramophone/materials.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/art.scnassets/Gramophone/materials.mtl -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/art.scnassets/Gramophone/model-triangulated.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/art.scnassets/Gramophone/model-triangulated.scn -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/art.scnassets/Plant/PUSHILIN_plant.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/art.scnassets/Plant/PUSHILIN_plant.mtl -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/art.scnassets/Plant/PUSHILIN_plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/art.scnassets/Plant/PUSHILIN_plant.png -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/art.scnassets/Plant/PUSHILIN_plant.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/art.scnassets/Plant/PUSHILIN_plant.scn -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/art.scnassets/WoodChair/CHAHIN_WOODEN_CHAIR.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/art.scnassets/WoodChair/CHAHIN_WOODEN_CHAIR.mtl -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/art.scnassets/WoodChair/CHAHIN_WOODEN_CHAIR.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/art.scnassets/WoodChair/CHAHIN_WOODEN_CHAIR.scn -------------------------------------------------------------------------------- /DecorateYourRoom/DecorateYourRoom/art.scnassets/WoodChair/CHAHIN_WOODEN_CHAIR_TEXTURE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/DecorateYourRoom/DecorateYourRoom/art.scnassets/WoodChair/CHAHIN_WOODEN_CHAIR_TEXTURE.jpg -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/HelloWorld/HelloWorld.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.xcodeproj/xcshareddata/xcschemes/HelloWorld.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/HelloWorld/HelloWorld.xcodeproj/xcshareddata/xcschemes/HelloWorld.xcscheme -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/HelloWorld/HelloWorld/AppDelegate.swift -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/HelloWorld/HelloWorld/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/HelloWorld/HelloWorld/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/HelloWorld/HelloWorld/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/HelloWorld/HelloWorld/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/HelloWorld/HelloWorld/Info.plist -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/HelloWorld/HelloWorld/ViewController.swift -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/art.scnassets/ship.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/HelloWorld/HelloWorld/art.scnassets/ship.scn -------------------------------------------------------------------------------- /HelloWorld/HelloWorld/art.scnassets/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/HelloWorld/HelloWorld/art.scnassets/texture.png -------------------------------------------------------------------------------- /PlacenoteSDKExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/PlacenoteSDKExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PlacenoteSDKExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/PlacenoteSDKExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /PlacenoteSDKExample.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/PlacenoteSDKExample.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/PlacenoteSDK/CameraManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/PlacenoteSDK/CameraManager.swift -------------------------------------------------------------------------------- /Pods/PlacenoteSDK/Data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/PlacenoteSDK/Data.bin -------------------------------------------------------------------------------- /Pods/PlacenoteSDK/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/PlacenoteSDK/Event.swift -------------------------------------------------------------------------------- /Pods/PlacenoteSDK/FeaturePointVisualizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/PlacenoteSDK/FeaturePointVisualizer.swift -------------------------------------------------------------------------------- /Pods/PlacenoteSDK/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/PlacenoteSDK/LICENSE -------------------------------------------------------------------------------- /Pods/PlacenoteSDK/LibPlacenote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/PlacenoteSDK/LibPlacenote.swift -------------------------------------------------------------------------------- /Pods/PlacenoteSDK/LocalizationThumbnailSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/PlacenoteSDK/LocalizationThumbnailSelector.swift -------------------------------------------------------------------------------- /Pods/PlacenoteSDK/MulticastDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/PlacenoteSDK/MulticastDelegate.swift -------------------------------------------------------------------------------- /Pods/PlacenoteSDK/Placenote.framework/Headers/Placenote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/PlacenoteSDK/Placenote.framework/Headers/Placenote.h -------------------------------------------------------------------------------- /Pods/PlacenoteSDK/Placenote.framework/Headers/libPlacenote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/PlacenoteSDK/Placenote.framework/Headers/libPlacenote.h -------------------------------------------------------------------------------- /Pods/PlacenoteSDK/Placenote.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/PlacenoteSDK/Placenote.framework/Info.plist -------------------------------------------------------------------------------- /Pods/PlacenoteSDK/Placenote.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/PlacenoteSDK/Placenote.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Pods/PlacenoteSDK/Placenote.framework/Placenote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/PlacenoteSDK/Placenote.framework/Placenote -------------------------------------------------------------------------------- /Pods/PlacenoteSDK/Placenote.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/PlacenoteSDK/Placenote.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Pods/PlacenoteSDK/UIImageUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/PlacenoteSDK/UIImageUtil.swift -------------------------------------------------------------------------------- /Pods/PlacenoteSDK/include/PlacenoteSDK-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/PlacenoteSDK/include/PlacenoteSDK-Bridging-Header.h -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Target Support Files/PlacenoteSDK/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/PlacenoteSDK/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/PlacenoteSDK/PlacenoteSDK-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/PlacenoteSDK/PlacenoteSDK-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/PlacenoteSDK/PlacenoteSDK-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/PlacenoteSDK/PlacenoteSDK-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/PlacenoteSDK/PlacenoteSDK-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/PlacenoteSDK/PlacenoteSDK-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/PlacenoteSDK/PlacenoteSDK-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/PlacenoteSDK/PlacenoteSDK-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/PlacenoteSDK/PlacenoteSDK.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/PlacenoteSDK/PlacenoteSDK.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/PlacenoteSDK/PlacenoteSDK.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/PlacenoteSDK/PlacenoteSDK.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DecorateYourRoom/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-DecorateYourRoom/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-DecorateYourRoom/Pods-DecorateYourRoom.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HelloWorld/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-HelloWorld/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-HelloWorld/Pods-HelloWorld.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomShapes/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-RandomShapes/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/Pods/Target Support Files/Pods-RandomShapes/Pods-RandomShapes.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/README.md -------------------------------------------------------------------------------- /RandomShapes/RandomShapes.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/RandomShapes/RandomShapes.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RandomShapes/RandomShapes.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/RandomShapes/RandomShapes.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RandomShapes/RandomShapes.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/RandomShapes/RandomShapes.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RandomShapes/RandomShapes.xcodeproj/xcshareddata/xcschemes/RandomShapes.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/RandomShapes/RandomShapes.xcodeproj/xcshareddata/xcschemes/RandomShapes.xcscheme -------------------------------------------------------------------------------- /RandomShapes/RandomShapes/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/RandomShapes/RandomShapes/AppDelegate.swift -------------------------------------------------------------------------------- /RandomShapes/RandomShapes/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/RandomShapes/RandomShapes/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /RandomShapes/RandomShapes/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/RandomShapes/RandomShapes/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /RandomShapes/RandomShapes/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/RandomShapes/RandomShapes/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /RandomShapes/RandomShapes/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/RandomShapes/RandomShapes/Info.plist -------------------------------------------------------------------------------- /RandomShapes/RandomShapes/RandomName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/RandomShapes/RandomShapes/RandomName.swift -------------------------------------------------------------------------------- /RandomShapes/RandomShapes/ShapeManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/RandomShapes/RandomShapes/ShapeManager.swift -------------------------------------------------------------------------------- /RandomShapes/RandomShapes/ShapeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/RandomShapes/RandomShapes/ShapeType.swift -------------------------------------------------------------------------------- /RandomShapes/RandomShapes/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/RandomShapes/RandomShapes/ViewController.swift -------------------------------------------------------------------------------- /license/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/license/LICENSE -------------------------------------------------------------------------------- /license/License.DBoW2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/license/License.DBoW2 -------------------------------------------------------------------------------- /license/License.OpenCV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/license/License.OpenCV -------------------------------------------------------------------------------- /license/License.curly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/license/License.curly -------------------------------------------------------------------------------- /license/License.g2o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/license/License.g2o -------------------------------------------------------------------------------- /license/License.gtsam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/license/License.gtsam -------------------------------------------------------------------------------- /license/License.libPlacenote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Placenote/PlacenoteSDK-iOS/HEAD/license/License.libPlacenote --------------------------------------------------------------------------------