Пример #1
0
 Box3 Sphere::getBoundingBox() {
     Box3 box;
     box.set( center, center );
     box.expandByScalar( radius );
     return box;
 }