March 2017
Intermediate to advanced
480 pages
11h 3m
English
There are two scenarios in which a triangle and plane intersect:

We are going to implement the TrianglePlane function to test for intersection between a triangle and a plane. This function will use our existing PlaneEquation function to classify which side of the plane the triangle is on.
Follow these steps to test if a triangle and a plane intersect:
TrianglePlane function in Geometry3D.h:bool TrianglePlane(const Triangle& t, const Plane& p);
Geometry3D.h ...Read now
Unlock full access