Compute normal of a plane from three points
Vector3f n = planeNormal( Vector3f(0, 0, 0), Vector3f(0, 0, 1), Vector3f(1, 0, 0) ); assert(isAlmostZero(n - Vector3f(0, 1, 0)));
See Implementation
Compute normal of a plane from three points