Taos API Reference
    Preparing search index...

    Interface ClipPlaneDef

    A clipping plane anchored on the ellipsoid. Content on the side the normalEnu points away from is hidden (matching Cesium: the normal points toward what is kept). The normal is given in the local East–North–Up frame at the anchor, so e.g. { u: 1 } keeps everything above the anchor height (a horizontal floor cut) and { e: 1 } keeps everything east of the anchor (a vertical wall facing west).

    interface ClipPlaneDef {
        lonDeg: number;
        latDeg: number;
        height?: number;
        normalEnu: { e?: number; n?: number; u?: number };
    }
    Index

    Properties

    lonDeg: number
    latDeg: number
    height?: number

    Height of the anchor above the ellipsoid, meters. Default 0.

    normalEnu: { e?: number; n?: number; u?: number }

    Plane normal in ENU at the anchor (need not be normalized). Components default 0.