├── .github └── FUNDING.yml ├── .gitignore ├── FakeTrackingSender ├── FakeTrackingSender.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── TrackingSender.xcscheme └── TrackingSender │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CameraView.swift │ ├── CameraViewController.swift │ ├── DrawLayer.swift │ ├── HandTrackingProvider.swift │ ├── Info.plist │ ├── SceneDelegate.swift │ └── TrackingSender.entitlements ├── HandTrackFake └── HandTrackFake.swift ├── LICENSE ├── README.md ├── VisionGesture ├── Packages │ └── RealityKitContent │ │ ├── Package.realitycomposerpro │ │ ├── ProjectData │ │ │ └── main.json │ │ └── WorkspaceData │ │ │ ├── SceneMetadataList.json │ │ │ ├── Settings.rcprojectdata │ │ │ └── yoshiyuki.rcuserdata │ │ ├── Package.swift │ │ ├── README.md │ │ └── Sources │ │ └── RealityKitContent │ │ ├── RealityKitContent.rkassets │ │ ├── Immersive.usda │ │ ├── Scene.usda │ │ ├── _PlainMaterial.usda │ │ └── hands.usda │ │ └── RealityKitContent.swift ├── VisionGesture.xcodeproj │ └── project.pbxproj └── VisionGesture │ ├── Assets.xcassets │ ├── AppIcon.solidimagestack │ │ ├── Back.solidimagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hand.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Front.solidimagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hand.png │ │ │ └── Contents.json │ │ └── Middle.solidimagestacklayer │ │ │ ├── Content.imageset │ │ │ ├── Contents.json │ │ │ └── hand.png │ │ │ └── Contents.json │ └── Contents.json │ ├── ContentView.swift │ ├── Gesture │ ├── GestureBase.swift │ ├── Gesture_Aloha.swift │ ├── Gesture_Draw.swift │ └── Gesture_MyGesture.swift │ ├── HandTrackProcess.swift │ ├── ImmersiveView.swift │ ├── Info.plist │ ├── Presentation │ ├── HandModel.swift │ ├── Hands.swift │ └── ViewModel.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── TrackingReceiverApp.swift └── VistionGesture.mp4 /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [alohayos] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/.gitignore -------------------------------------------------------------------------------- /FakeTrackingSender/FakeTrackingSender.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/FakeTrackingSender/FakeTrackingSender.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FakeTrackingSender/FakeTrackingSender.xcodeproj/xcshareddata/xcschemes/TrackingSender.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/FakeTrackingSender/FakeTrackingSender.xcodeproj/xcshareddata/xcschemes/TrackingSender.xcscheme -------------------------------------------------------------------------------- /FakeTrackingSender/TrackingSender/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/FakeTrackingSender/TrackingSender/AppDelegate.swift -------------------------------------------------------------------------------- /FakeTrackingSender/TrackingSender/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/FakeTrackingSender/TrackingSender/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FakeTrackingSender/TrackingSender/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/FakeTrackingSender/TrackingSender/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FakeTrackingSender/TrackingSender/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/FakeTrackingSender/TrackingSender/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FakeTrackingSender/TrackingSender/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/FakeTrackingSender/TrackingSender/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FakeTrackingSender/TrackingSender/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/FakeTrackingSender/TrackingSender/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FakeTrackingSender/TrackingSender/CameraView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/FakeTrackingSender/TrackingSender/CameraView.swift -------------------------------------------------------------------------------- /FakeTrackingSender/TrackingSender/CameraViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/FakeTrackingSender/TrackingSender/CameraViewController.swift -------------------------------------------------------------------------------- /FakeTrackingSender/TrackingSender/DrawLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/FakeTrackingSender/TrackingSender/DrawLayer.swift -------------------------------------------------------------------------------- /FakeTrackingSender/TrackingSender/HandTrackingProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/FakeTrackingSender/TrackingSender/HandTrackingProvider.swift -------------------------------------------------------------------------------- /FakeTrackingSender/TrackingSender/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/FakeTrackingSender/TrackingSender/Info.plist -------------------------------------------------------------------------------- /FakeTrackingSender/TrackingSender/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/FakeTrackingSender/TrackingSender/SceneDelegate.swift -------------------------------------------------------------------------------- /FakeTrackingSender/TrackingSender/TrackingSender.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/FakeTrackingSender/TrackingSender/TrackingSender.entitlements -------------------------------------------------------------------------------- /HandTrackFake/HandTrackFake.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/HandTrackFake/HandTrackFake.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/README.md -------------------------------------------------------------------------------- /VisionGesture/Packages/RealityKitContent/Package.realitycomposerpro/ProjectData/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/Packages/RealityKitContent/Package.realitycomposerpro/ProjectData/main.json -------------------------------------------------------------------------------- /VisionGesture/Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/SceneMetadataList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/SceneMetadataList.json -------------------------------------------------------------------------------- /VisionGesture/Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/Settings.rcprojectdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/Settings.rcprojectdata -------------------------------------------------------------------------------- /VisionGesture/Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/yoshiyuki.rcuserdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/yoshiyuki.rcuserdata -------------------------------------------------------------------------------- /VisionGesture/Packages/RealityKitContent/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/Packages/RealityKitContent/Package.swift -------------------------------------------------------------------------------- /VisionGesture/Packages/RealityKitContent/README.md: -------------------------------------------------------------------------------- 1 | # RealityKitContent 2 | 3 | A description of this package. -------------------------------------------------------------------------------- /VisionGesture/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/Immersive.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/Immersive.usda -------------------------------------------------------------------------------- /VisionGesture/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/Scene.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/Scene.usda -------------------------------------------------------------------------------- /VisionGesture/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/_PlainMaterial.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/_PlainMaterial.usda -------------------------------------------------------------------------------- /VisionGesture/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/hands.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/hands.usda -------------------------------------------------------------------------------- /VisionGesture/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.swift -------------------------------------------------------------------------------- /VisionGesture/VisionGesture.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/hand.png -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Contents.json -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/hand.png -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/hand.png -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/ContentView.swift -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Gesture/GestureBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Gesture/GestureBase.swift -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Gesture/Gesture_Aloha.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Gesture/Gesture_Aloha.swift -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Gesture/Gesture_Draw.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Gesture/Gesture_Draw.swift -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Gesture/Gesture_MyGesture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Gesture/Gesture_MyGesture.swift -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/HandTrackProcess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/HandTrackProcess.swift -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/ImmersiveView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/ImmersiveView.swift -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Info.plist -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Presentation/HandModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Presentation/HandModel.swift -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Presentation/Hands.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Presentation/Hands.swift -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Presentation/ViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Presentation/ViewModel.swift -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /VisionGesture/VisionGesture/TrackingReceiverApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VisionGesture/VisionGesture/TrackingReceiverApp.swift -------------------------------------------------------------------------------- /VistionGesture.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlohaYos/VisionGesture/HEAD/VistionGesture.mp4 --------------------------------------------------------------------------------