copyFrom method

void copyFrom(
  1. Plane o
)

Implementation

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