File size: 1,061 Bytes
b24de8b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { Vector3 } from "../math/Vector3";
import { Quaternion } from "../math/Quaternion";
import { EventDispatcher } from "../events/EventDispatcher";
import { Matrix4 } from "../math/Matrix4";
import { ObjectChangedEvent } from "../events/Events";
declare abstract class Object3D extends EventDispatcher {
    positionChanged: boolean;
    rotationChanged: boolean;
    scaleChanged: boolean;
    protected _position: Vector3;
    protected _rotation: Quaternion;
    protected _scale: Vector3;
    protected _transform: Matrix4;
    protected _changeEvent: ObjectChangedEvent;
    update: () => void;
    applyPosition: () => void;
    applyRotation: () => void;
    applyScale: () => void;
    raiseChangeEvent: () => void;
    constructor();
    protected _updateMatrix(): void;
    get position(): Vector3;
    set position(position: Vector3);
    get rotation(): Quaternion;
    set rotation(rotation: Quaternion);
    get scale(): Vector3;
    set scale(scale: Vector3);
    get forward(): Vector3;
    get transform(): Matrix4;
}
export { Object3D };