setC method

Implementation

BoundingBoxC setC(BoundingBoxC o) {
  min.setC(o.min);
  max.setC(o.max);
  return this;
}