copyFrom method

Plane copyFrom(
  1. Plane plane
)

Implementation

Plane copyFrom(Plane plane) {
  normal.setFrom(plane.normal);
  constant = plane.constant;

  return this;
}