├── .gitignore ├── README.md ├── Recogcis.xcodeproj └── project.pbxproj ├── Recogcis ├── ARState.swift ├── ARViewController.swift ├── ARViewModel.swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Commencer.swift ├── DataController.swift ├── Info.plist ├── Resources │ ├── Commencers.json │ ├── Commencers.mlmodel │ └── bgCard.png └── Utilities │ ├── Constants.swift │ ├── ErrorPresenter.swift │ └── SCNVector3.swift └── example-app.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/README.md -------------------------------------------------------------------------------- /Recogcis.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/Recogcis.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Recogcis/ARState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/Recogcis/ARState.swift -------------------------------------------------------------------------------- /Recogcis/ARViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/Recogcis/ARViewController.swift -------------------------------------------------------------------------------- /Recogcis/ARViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/Recogcis/ARViewModel.swift -------------------------------------------------------------------------------- /Recogcis/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/Recogcis/AppDelegate.swift -------------------------------------------------------------------------------- /Recogcis/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/Recogcis/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Recogcis/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/Recogcis/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Recogcis/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/Recogcis/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Recogcis/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/Recogcis/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Recogcis/Commencer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/Recogcis/Commencer.swift -------------------------------------------------------------------------------- /Recogcis/DataController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/Recogcis/DataController.swift -------------------------------------------------------------------------------- /Recogcis/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/Recogcis/Info.plist -------------------------------------------------------------------------------- /Recogcis/Resources/Commencers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/Recogcis/Resources/Commencers.json -------------------------------------------------------------------------------- /Recogcis/Resources/Commencers.mlmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/Recogcis/Resources/Commencers.mlmodel -------------------------------------------------------------------------------- /Recogcis/Resources/bgCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/Recogcis/Resources/bgCard.png -------------------------------------------------------------------------------- /Recogcis/Utilities/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/Recogcis/Utilities/Constants.swift -------------------------------------------------------------------------------- /Recogcis/Utilities/ErrorPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/Recogcis/Utilities/ErrorPresenter.swift -------------------------------------------------------------------------------- /Recogcis/Utilities/SCNVector3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/Recogcis/Utilities/SCNVector3.swift -------------------------------------------------------------------------------- /example-app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetkoca/Recogcis/HEAD/example-app.gif --------------------------------------------------------------------------------