Esempio n. 1
0
 //! Make the sphere containing a given box
 void circumscribe(const box3<Type>& box)
 {
     m_center = box.getCenter();
     m_radius = (box.getMax() - m_center).length();
 }