(coordinateSystem: AxesCoordinateSystem)
| 23 | |
| 24 | // Get the default "up" axis for a coordinate system (first in cycle order) |
| 25 | export function getDefaultUpAxis(coordinateSystem: AxesCoordinateSystem): TargetAxis { |
| 26 | return getAxisCycleOrder(coordinateSystem)[0]; |
| 27 | } |
| 28 | |
| 29 | export interface SelectedPoint { |
| 30 | position: THREE.Vector3; |
no test coverage detected