Type alias ClippingPlaneCreationOptions

ClippingPlaneCreationOptions: {
    createBottomPlane?: boolean;
    createEndingPlanes?: boolean;
    createTopPlane?: boolean;
    createVerticalPlanes?: boolean;
    reverse?: boolean;
}

Options to the define how Cesium.ClippingPlanes are created from a ol.Feature.

Type declaration

  • Optional createBottomPlane?: boolean

    specify whether to create the horizontal clipping plane on the ground level

  • Optional createEndingPlanes?: boolean

    create 2 planes at the end of a line with only two coordinates

  • Optional createTopPlane?: boolean

    specify whether to create the horizontal clipping plane on the top level of an extruded geometry

  • Optional createVerticalPlanes?: boolean

    specify whether to create the vertical clipping planes

  • Optional reverse?: boolean

    specify the clip direction. If true, everything outside the clippingPlaneCollection should be cut off

Generated using TypeDoc