fromCoplanarPoints method
Sets the values of the plane from three given coplanar points.
Implementation
Plane fromCoplanarPoints(Vector3 a, Vector3 b, Vector3 c ) {
v1.subVectors( c, b ).cross( v2.subVectors( a, b ) ).normalize();
fromNormalAndCoplanarPoint( v1, a );
return this;
}