An orthographic camera containing properties to create an orthographic projection matrix

interface ICameraOrthographic {
    extensions?: Record<string, unknown>;
    extras?: Record<string, unknown>;
    xmag: number;
    ymag: 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

xmag: number

The floating-point horizontal magnification of the view. Must not be zero

ymag: number

The floating-point vertical magnification of the view. Must not be zero

zfar: number

The floating-point distance to the far clipping plane. zfar must be greater than znear

znear: number

The floating-point distance to the near clipping plane