File size: 291 Bytes
3b7903d 4e1da8c 5f32ba4 4e1da8c 3b7903d 5f32ba4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import { Vector3 } from "../math/Vector3";
import { Quaternion } from "../math/Quaternion";
class Object3D {
position: Vector3;
rotation: Quaternion;
constructor() {
this.position = new Vector3();
this.rotation = new Quaternion();
}
}
export { Object3D };
|