copy method

Plane copy(
  1. Plane plane
)

Implementation

Plane copy(Plane plane) {
  normal.copy(plane.normal);
  constant = plane.constant;

  return this;
}