translate method

Plane translate(
  1. Vector3 v
)

Translates the plane by a given vector v.

Implementation

Plane translate(Vector3 v) {
  return Plane(point + v.toPoint(), normal);
}