translate method

Plane translate(
  1. Vector3 offset
)

Implementation

Plane translate(Vector3 offset) {
  constant -= offset.dot(normal);

  return this;
}