File size: 275 Bytes
4e1da8c
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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();
    }
}