Interface FrustumProjectionParams

interface FrustumProjectionParams {
    bottom?: number;
    far?: number;
    left?: number;
    near?: number;
    right?: number;
    top?: number;
}

Properties

bottom?: number

Position of the FrustumProjection's bottom plane on the View-space Y-axis.

Default value is -1.0.

Bottom frustum plane position.

far?: number

Position of the FrustumProjection's far plane on the View-space Z-axis.

Default value is 10000.

Far frustum plane position.

left?: number

Position of the FrustumProjection's left plane on the View-space X-axis.

Default value is -1.0.

Left frustum plane position.

near?: number

Position of the FrustumProjection's near plane on the View-space Z-axis.

Default value is 0.1.

Left frustum plane position.

right?: number

Position of the FrustumProjection's right plane on the View-space X-axis.

Default value is 1.0.

Right frustum plane position.

top?: number

Position of the FrustumProjection's top plane on the View-space Y-axis.

Default value is 1.0.

Top frustum plane position.