Viewer
    Preparing search index...

    Interface IPointRestrictionDefinition

    interface IPointRestrictionDefinition {
        id: string;
        point: number[];
        radius: number;
        type: "point";
        rotation?: Rotation;
        wireframe?: boolean;
        wireframeColor?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    id: string

    The unique id of the restriction.

    point: number[]

    The point of the restriction.

    radius: number

    The radius of the restriction.

    type: "point"

    The type of the restriction.

    rotation?: Rotation

    Optional rotation of the restriction.

    wireframe?: boolean

    If the restriction should be displayed as a wireframe point.

    wireframeColor?: string

    The color of the wireframe.