dylanebert's picture
dylanebert HF Staff
add skeleton library
4e1da8c
raw
history blame
275 Bytes
import { Vector3 } from '../math/Vector3';
import { Quaternion } from '../math/Quaternion';
export class Object3D {
position: Vector3;
rotation: Quaternion;
constructor() {
this.position = new Vector3();
this.rotation = new Quaternion();
}
}