| 85 | } |
| 86 | |
| 87 | fun orbitDown(degrees: Double) { |
| 88 | camera.advanceState { |
| 89 | it.orbitUp(-(Math.PI * degrees / 180).toFloat()) |
| 90 | } |
| 91 | updateState() |
| 92 | } |
| 93 | |
| 94 | fun dollyIn(by: Double) { |
| 95 | camera.advanceState { |
nothing calls this directly
no test coverage detected