negate method

Plane negate()

Implementation

Plane negate() {
  constant *= -1;
  normal.negate();

  return this;
}