DrawingPlaneProperties

Type alias DrawingPlaneProperties

DrawingPlaneProperties: {
    enabled?: boolean;
    invisible?: boolean;
    name?: string;
    normal?: [number, number, number];
    position?: [number, number, number];
    tangent?: [number, number, number];
}

Type declaration

  • Optional enabled?: boolean

    The enabled state of the DrawingPlane.

    Default

    false
    
  • Optional invisible?: boolean

    The invisible state of the DrawingPlane.

    Default

    false
    
  • Optional name?: string

    The name of the DrawingPlane.

    Default

    undefined
    
  • Optional normal?: [number, number, number]

    The normal vector of the DrawingPlane.

    Default

    [0, 1, 0]
    
  • Optional position?: [number, number, number]

    The position of the DrawingPlane.

    Default

    [0,0,0]
    
  • Optional tangent?: [number, number, number]

    The tangent vector of the DrawingPlane.

    Default

    [1, 0, 0]