Interface OrthoProjectionParams

interface OrthoProjectionParams {
    far?: number;
    near?: number;
    scale?: number;
}

Properties

Properties

far?: number

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

Default value is 10000.

near?: number

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

Default value is 0.1.

scale?: number

Sets scale factor for the OrthoProjection's extents on the View-space X and Y axis.

A larger value will include more objects within the extents, while a lower value will include less.

Clamps to minimum value of ````0.01```.

Default value is 1.0