copyFrom method

void copyFrom (Plane o)

Implementation

void copyFrom(Plane o) {
  _normal.setFrom(o._normal);
  _constant = o._constant;
}