-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
edc31ce
commit 3364391
Showing
194 changed files
with
1,360 additions
and
33,044 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// AR_MultiPendulumApp.swift | ||
// AR MultiPendulum | ||
// | ||
// Created by Philip Turner on 10/5/21. | ||
// | ||
|
||
import SwiftUI | ||
|
||
@main | ||
struct AR_MultiPendulumApp: App { | ||
var body: some Scene { | ||
WindowGroup { | ||
ContentView() | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// | ||
// PendulumSettingsView.swift | ||
// AR MultiPendulum | ||
// | ||
// Created by Philip Turner on 10/5/21. | ||
// | ||
|
||
import ARHeadsetKit | ||
import SwiftUI | ||
|
||
struct PendulumSettingsView: CustomRenderingSettingsView { | ||
@ObservedObject var coordinator: Coordinator | ||
init(c: Coordinator) { coordinator = c } | ||
|
||
public var body: some View { | ||
Toggle(isOn: $coordinator.doingTwoSidedPendulums) { | ||
Text("Two-Sided Pendulums") | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.