Skip to main content

Type Alias: PlaneGeometry

type PlaneGeometry = {
distance: Float;
normal: Vec3;
};

Defined in: node_modules/@3dverse/livelink.core/dist/_prebuild/engine_types/components.d.ts:664

Plane geometry.

Properties

distance

distance: Float;

Defined in: node_modules/@3dverse/livelink.core/dist/_prebuild/engine_types/components.d.ts:669

Distance from the origin in the plane's normal direction.

Default Value

0;

normal

normal: Vec3;

Defined in: node_modules/@3dverse/livelink.core/dist/_prebuild/engine_types/components.d.ts:674

Normal of the plane.

Default Value

(0, 1, 0);