How do you find if a point lies inside a triangle?
How do you find if a point lies inside a triangle? A simple way is to: find the vectors connecting the point to each of the triangle’s three vertices and sum the angles between those vectors. If the sum of the angles is 2*pi then the point is inside the triangle. How do you find […]