Interface SectionPlaneParams

interface SectionPlaneParams {
    active?: boolean;
    dir?: Vec3;
    id?: string;
    pos?: Vec3;
}

Properties

Properties

active?: boolean

Whether the SectionPlane is active or not.

Default value is true.

dir?: Vec3

3D direction of the SectionPlane.

Range is [-1..1, -1..1, -1..1].

Default value is [0.0, 0.0, -1.0].

id?: string

The unique ID of the SectionPlane.

pos?: Vec3

The World-space 3D position of the SectionPlane.

Default value is [0, 0, 0].