()
| 2 | import type { Sim3d } from '../types/sim3d'; |
| 3 | |
| 4 | function identitySim3d(): Sim3d { |
| 5 | return { |
| 6 | scale: 1, |
| 7 | rotation: new THREE.Quaternion(), |
| 8 | translation: new THREE.Vector3(), |
| 9 | }; |
| 10 | } |
| 11 | |
| 12 | /** |
| 13 | * Compute scale transform to set distance between two points to a target value. |
no outgoing calls
no test coverage detected