dylanebert's picture
dylanebert HF Staff
reformat export
5f32ba4
raw
history blame
291 Bytes
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 };