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 planesp1 = 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]]); Copy
// p1, p2, and p3 are all equal planesp1 = 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]]);
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.