├── .DS_Store ├── README.md ├── rp2.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── markkim.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── markkim.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist └── rp2 ├── .DS_Store ├── AppDelegate.swift ├── AssetNode.swift ├── Assets.xcassets ├── .DS_Store ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── CapturedRoom+Extra.swift ├── InfoView ├── InfoView.swift ├── LabelView.swift ├── PickerView.swift └── StatsView.swift ├── MathUtil.swift ├── ObjectNode.swift ├── PNG ├── close_button.png ├── toaster.png ├── toy.png └── tricycle.png ├── SCNNode+Extra.swift ├── UIColor+Hex.swift ├── USDZ ├── toaster.usdz ├── toy.usdz └── tricycle.usdz ├── ViewController+Asset.swift ├── ViewController+Picker.swift ├── ViewController.swift └── art.scnassets └── LabelPrototype.scn /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/README.md -------------------------------------------------------------------------------- /rp2.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /rp2.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /rp2.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /rp2.xcodeproj/project.xcworkspace/xcuserdata/markkim.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2.xcodeproj/project.xcworkspace/xcuserdata/markkim.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /rp2.xcodeproj/xcuserdata/markkim.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2.xcodeproj/xcuserdata/markkim.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /rp2.xcodeproj/xcuserdata/markkim.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2.xcodeproj/xcuserdata/markkim.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /rp2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/.DS_Store -------------------------------------------------------------------------------- /rp2/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/AppDelegate.swift -------------------------------------------------------------------------------- /rp2/AssetNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/AssetNode.swift -------------------------------------------------------------------------------- /rp2/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /rp2/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /rp2/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /rp2/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /rp2/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /rp2/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /rp2/CapturedRoom+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/CapturedRoom+Extra.swift -------------------------------------------------------------------------------- /rp2/InfoView/InfoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/InfoView/InfoView.swift -------------------------------------------------------------------------------- /rp2/InfoView/LabelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/InfoView/LabelView.swift -------------------------------------------------------------------------------- /rp2/InfoView/PickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/InfoView/PickerView.swift -------------------------------------------------------------------------------- /rp2/InfoView/StatsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/InfoView/StatsView.swift -------------------------------------------------------------------------------- /rp2/MathUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/MathUtil.swift -------------------------------------------------------------------------------- /rp2/ObjectNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/ObjectNode.swift -------------------------------------------------------------------------------- /rp2/PNG/close_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/PNG/close_button.png -------------------------------------------------------------------------------- /rp2/PNG/toaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/PNG/toaster.png -------------------------------------------------------------------------------- /rp2/PNG/toy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/PNG/toy.png -------------------------------------------------------------------------------- /rp2/PNG/tricycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/PNG/tricycle.png -------------------------------------------------------------------------------- /rp2/SCNNode+Extra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/SCNNode+Extra.swift -------------------------------------------------------------------------------- /rp2/UIColor+Hex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/UIColor+Hex.swift -------------------------------------------------------------------------------- /rp2/USDZ/toaster.usdz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/USDZ/toaster.usdz -------------------------------------------------------------------------------- /rp2/USDZ/toy.usdz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/USDZ/toy.usdz -------------------------------------------------------------------------------- /rp2/USDZ/tricycle.usdz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/USDZ/tricycle.usdz -------------------------------------------------------------------------------- /rp2/ViewController+Asset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/ViewController+Asset.swift -------------------------------------------------------------------------------- /rp2/ViewController+Picker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/ViewController+Picker.swift -------------------------------------------------------------------------------- /rp2/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/ViewController.swift -------------------------------------------------------------------------------- /rp2/art.scnassets/LabelPrototype.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markckim/RoomPlan/HEAD/rp2/art.scnassets/LabelPrototype.scn --------------------------------------------------------------------------------