| 71 | } |
| 72 | |
| 73 | fun orbitRight(degrees: Double) { |
| 74 | camera.advanceState { |
| 75 | it.orbitLeft(-(Math.PI * degrees / 180).toFloat()) |
| 76 | } |
| 77 | updateState() |
| 78 | } |
| 79 | |
| 80 | fun orbitUp(degrees: Double) { |
| 81 | camera.advanceState { |
nothing calls this directly
no test coverage detected