starry-math
    Preparing search index...

    Interface PlaneEquation

    Interface representing a plane equation in the form ax + by + cz + d = 0.

    interface PlaneEquation {
        a: number;
        b: number;
        c: number;
        d: number;
    }
    Index

    Properties

    a b c d

    Properties

    a: number

    The a coefficient of the plane equation.

    b: number

    The b coefficient of the plane equation.

    c: number

    The c coefficient of the plane equation.

    d: number

    The d coefficient of the plane equation.