| 1 | import * as THREE from "three"; |
| 2 | |
| 3 | export class MathUtils { |
| 4 | static basisFromEuler(rotation: THREE.Euler) { |
| 5 | const dirs = new THREE.Matrix4(); |
| 6 | dirs.makeRotationFromEuler(rotation); |
nothing calls this directly
no outgoing calls
no test coverage detected