Skip to main content

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

Given a point and a segment, constructs a plane perpendicular to the segment that passes through the point.

calc.plane1.calc.png
calc.plane1.plotter0.calc.png

Given a list with, at least, three coplanar points, constructs a plane that passes through all the points.

calc.plane2.calc.png

The general equation for a plane is: Ax+By+Cz+D=0. The four inputs are the four coefficients: A, B, C and D.

calc.plane3.calc.png

Given a point and a vector, constructs a plane perpendicular to the vector given and passing through the point.

calc.plane4.calc.png

Given a point and two vectors, constructs the plane with vectors given and passing through the point.

calc.plane5.calc.png

Given a point and a line, constructs the plane perpendicular to the line and passing through the point.

calc.plane6.calc.png
calc.plane6.plotter0.calc.png

Constructs the plane passing through all three points.

calc.plane7.calc.png
calc.plane7.plotter0.calc.png

Given two lines, constructs a plane that contains such lines.

calc.plane8.calc.png
calc.plane8.plotter0.calc.png