setFrom method
box
- BoundingBox to copy.
Implementation
BoundingBox setFrom(BoundingBox box) {
min.setFrom(box.min);
max.setFrom(box.max);
return this;
}
box
- BoundingBox to copy.
BoundingBox setFrom(BoundingBox box) {
min.setFrom(box.min);
max.setFrom(box.max);
return this;
}