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