clone method
Returns a new BoundingBox with the same min and max as this one.
Implementation
BoundingBox clone() {
return BoundingBox().setFrom(this);
}
Returns a new BoundingBox with the same min and max as this one.
BoundingBox clone() {
return BoundingBox().setFrom(this);
}