normalize method
void
normalize()
Normalize this plane so that normal has unit length.
Implementation
void normalize() {
final double inverseLength = 1.0 / normal.length;
_normal.scale(inverseLength);
constant *= inverseLength;
}