A perspective camera containing properties to create a perspective projection matrix

interface ICameraPerspective {
    extensions?: Record<string, unknown>;
    extras?: Record<string, unknown>;
    aspectRatio?: number;
    yfov: number;
    zfar?: number;
    znear: number;
}

Hierarchy (view full)

Properties

extensions?: Record<string, unknown>

Dictionary object with extension-specific objects

extras?: Record<string, unknown>

Application-Specific data

aspectRatio?: number

The floating-point aspect ratio of the field of view

yfov: number

The floating-point vertical field of view in radians

zfar?: number

The floating-point distance to the far clipping plane

znear: number

The floating-point distance to the near clipping plane