Viewer
    Preparing search index...

    Interface IPlaneRestrictionDefinition

    interface IPlaneRestrictionDefinition {
        id: string;
        origin: number[];
        type: "plane";
        vector_u: number[];
        vector_v: number[];
        gridSnapRestriction?: { gridUnit?: number };
        rotation?: Rotation;
    }

    Hierarchy (View Summary)

    Index

    Properties

    id: string

    The unique id of the restriction.

    origin: number[]

    The origin of the plane.

    type: "plane"

    The type of the restriction.

    vector_u: number[]

    The first vector of the plane.

    vector_v: number[]

    The second vector of the plane.

    gridSnapRestriction?: { gridUnit?: number }

    Optional grid snap restriction properties.

    Type Declaration

    • OptionalgridUnit?: number

      Size of the grid unit.

    rotation?: Rotation

    Optional rotation of the restriction.