math docs
    Preparing search index...

    Type Alias Plane3

    A plane in 3D space normal - a unit length vector defining the normal of the plane. constant - the signed distance from the origin to the plane.

    type Plane3 = {
        constant: number;
        normal: vec3.Vec3;
    }
    Index
    constant: number
    normal: vec3.Vec3