Re: [Algorithms] Triangle area.
Brought to you by:
vexxed72
From: Eric L. <le...@C4...> - 2000-08-19 04:38:13
|
> This is something very simple (I think)... I need the fastest way to find > the area of a triangle. For an arbitrary triangle expressed by three points in space, P1, P2, and P3, the area is given by area = 0.5 * Magnitude(CrossProduct(P2 - P1, P3 - P1)); -- Eric Lengyel |