Interface ICameraData

Source
Expand description

Interface for camera data.

interface ICameraData {
    eye: number[];
    lookAt: number[];
    up: number[];
}

Properties§

Source§

eye: number[]

Position of the camera.

Source§

lookAt: number[]

Point the camera is looking at.

Source§

up: number[]

Up vector of the camera.