Defines the subsection of a model (clipping plane).

interface IClippingPlane {
    direction: IDirection;
    location: IPoint;
}

Properties

Properties

direction: IDirection

Direction of the clipping plane. The Direction vector points in the invisible direction meaning the half-space that is clipped.

location: IPoint

Origin of the clipping plane.