Plane Constructs a plane. Syntax plane(Point, Segment) plane(List) plane(Real, Real, Real, Real) plane(Point, Vector) plane(Point, Vector, Vector) plane(Point, Line) plane(Point, Point, Point) plane(Line, Line) Description plane(Point, Segment) Given a point and a segment, constructs a plane perpendicular to the segment that passes through the point. plane(List) Given a list with, at least, three coplanar points, constructs a plane that passes through all the points. plane(Real, Real, Real, Real) The general equation for a plane is: . The four inputs are the four coefficients: , , and . plane(Point, Vector) Given a point and a vector, constructs a plane perpendicular to the vector given and passing through the point. plane(Point, Vector, Vector) Given a point and two vectors, constructs the plane with vectors given and passing through the point. plane(Point, Line) Given a point and a line, constructs the plane perpendicular to the line and passing through the point. plane(Point, Point, Point) Constructs the plane passing through all three points. plane(Line, Line) Given two lines, constructs a plane that contains such lines. Related functions Line, Perpendicular Table of Contents Syntax Description Related functions