Interface for camera data.
interface ICameraData { eye: number[]; lookAt: number[]; up: number[];}
Position of the camera.
Point the camera is looking at.
Up vector of the camera.
Interface for camera data.