├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── .travis.yml ├── LICENSE ├── Package.swift ├── README.md ├── SmartHitTest.podspec ├── Sources └── SmartHitTest │ └── SmartHitTest.swift └── install_swiftlint.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxxfrazer/ARKit-SmartHitTest/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxxfrazer/ARKit-SmartHitTest/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxxfrazer/ARKit-SmartHitTest/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxxfrazer/ARKit-SmartHitTest/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxxfrazer/ARKit-SmartHitTest/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxxfrazer/ARKit-SmartHitTest/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxxfrazer/ARKit-SmartHitTest/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxxfrazer/ARKit-SmartHitTest/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxxfrazer/ARKit-SmartHitTest/HEAD/README.md -------------------------------------------------------------------------------- /SmartHitTest.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxxfrazer/ARKit-SmartHitTest/HEAD/SmartHitTest.podspec -------------------------------------------------------------------------------- /Sources/SmartHitTest/SmartHitTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxxfrazer/ARKit-SmartHitTest/HEAD/Sources/SmartHitTest/SmartHitTest.swift -------------------------------------------------------------------------------- /install_swiftlint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxxfrazer/ARKit-SmartHitTest/HEAD/install_swiftlint.sh --------------------------------------------------------------------------------