()
| 74 | * Create default Euler representation (identity transform). |
| 75 | */ |
| 76 | export function createIdentityEuler(): Sim3dEuler { |
| 77 | return { |
| 78 | scale: 1, |
| 79 | rotationX: 0, |
| 80 | rotationY: 0, |
| 81 | rotationZ: 0, |
| 82 | translationX: 0, |
| 83 | translationY: 0, |
| 84 | translationZ: 0, |
| 85 | }; |
| 86 | } |
| 87 | |
| 88 | // ============================================================================ |
| 89 | // Core Transformations (matching COLMAP semantics) |
no outgoing calls
no test coverage detected