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:682

Infinite plane geometry.

Properties

distance

distance: Float;

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

Signed distance from the origin along the plane normal (meters).

Default Value

0;

normal

normal: Vec3;

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

Unit normal vector of the plane (in local space).

Default Value

(0, 1, 0);