Viewer
    Preparing search index...

    Interface ILineRestrictionDefinition

    interface ILineRestrictionDefinition {
        id: string;
        point1: number[];
        point2: number[];
        radius: number;
        type: "line";
        rotation?: Rotation;
        wireframe?: boolean;
        wireframeColor?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    id: string

    The unique id of the restriction.

    point1: number[]

    The first point of the restriction.

    point2: number[]

    The second point of the restriction.

    radius: number

    The radius of the restriction.

    type: "line"

    The type of the restriction.

    rotation?: Rotation

    Optional rotation of the restriction.

    wireframe?: boolean

    If the restriction should be displayed as a wireframe line.

    wireframeColor?: string

    The color of the wireframe.