DrawingPlaneProperties

Interface DrawingPlaneProperties

interface DrawingPlaneProperties {
    enabled?: boolean;
    invisible?: boolean;
    name?: string;
    normal?: Vector3;
    position?: Vector3;
    tangent?: Vector3;
}
Index

Properties

enabled?: boolean

The enabled state of the DrawingPlane.

false
invisible?: boolean

The invisible state of the DrawingPlane.

false
name?: string

The name of the DrawingPlane.

undefined
normal?: Vector3

The normal vector of the DrawingPlane.

[0, 1, 0]
position?: Vector3

The position of the DrawingPlane.

[0,0,0]
tangent?: Vector3

The tangent vector of the DrawingPlane.

[1, 0, 0]



Was this page helpful? Please leave a thumbs up or down.