figureone
    Preparing search index...

    Type Alias TypeParsablePlane

    TypeParsablePlane:
        | [TypeParsablePoint, TypeParsablePoint]
        | [TypeParsablePoint, TypeParsablePoint, TypeParsablePoint]
        | Plane
        | string

    A Plane is defined with either:

    When defining 3 points p1, p2 and p3, the normal will be in the direction of the cross product of p12 with p13.

    // p1, p2, and p3 are all equal planes
    p1 = new Fig.Plane([0, 0, 0], [0, 1, 0]);
    p2 = Fig.getPlane([[0, 0, 0], [0, 1, 0]]);
    p3 = Fig.getPlane([[0, 0, 0], [1, 0, 0], [0, 0, 1]]);