Spatial geometry 6
Last updated
Last updated
A plane is sometimes defined using only an origin point “O” and a normal vector i.e. perpendicular direction to the plane. So how do we go about constructing a full basis i.e. two additional vectors square to the normal within the plane, given that we have only one vector to work with and the cross product requires two?
One way is to first choose a vector at random. As long as it is not parallel to the normal we can repeat the double application of the cross product seen earlier and complete the basis. An alternative is to exchange the components of the normal and then perform the double cross product orthonormalization as seen below.
Practice
Use the “plane from normal” and the “deconstruct plane” components and observe how this process is performed by the CAD application.
Given two points of a line segment, construct a normal plane i.e. a plane whose normal is the direction of the line, situated at its mid-point.
Given a plane defined by three points “A”, “B", and “C”, we aim to determine the point of projection “Q” from an external to the plane point “P”. To approach this we need to use both the dot and cross products.
First we define the vectors and from the points of the triangle. We compute the plane’s normal using the cross product and normalize it. To find the point of projection from “P” onto the plane, we need to follow the normal direction . The question is by how much?
By projecting the auxiliary vector onto the unit normal we have computed exactly this missing distance . Therefore all we need to do is to move back from the point “P” i.e. against the normal as much as “d”. Thus or by expanding which reveals the projection “sandwich” product.
The approach is exactly the same as the one used earlier to project a point on a line. Here we just consider this line following the normal direction from one point on the plane! It was just a matter of looking at the plane from its side view.
Implicit Plane Equation
The term we used to compute the projection distance is very interesting if we expand it to . Now let’s substitute point “B” with “O” to signify the origin of the plane . In fact it did not matter where point “B” was as long it was on the plane i.e. we could have used either “A”, “B” or “C”.
If the projected distance “d” is zero, i.e. then the point “P” will be by definition on the plane. We have thus constructed an expression which captures all points on the plane or in other words the implicit form of a plane’s equation. This is quite elegant as opposed to the parametric form we looked at earlier, but it does not tell us how to construct such points; only how to test if they are on the plane.
Half Spaces
In the same sense the sign of the computation tells us something about the directionality of the point in relation to the plane. If the sign is positive the point is in front of the plane, while negative values imply that the point is behind the plane. Forward by convention is assumed the direction pointed by the normal. In this sense a plane split space in two sub-spaces or half-spaces. This property is so useful that it is used from solving complex mathematical problems to rendering video game 3D graphics, because we don’t have to process anything behind the camera plane.