| 61 | |
| 62 | template < typename PointType, index_t dimension > |
| 63 | BoundingBox< dimension > |
| 64 | GenericSphere< PointType, dimension >::bounding_box() const |
| 65 | { |
| 66 | BoundingBox< dimension > bbox; |
| 67 | bbox.add_point( origin_ ); |
| 68 | bbox.extends( radius_ ); |
| 69 | return bbox; |
| 70 | } |
| 71 | |
| 72 | template < index_t dimension > |
| 73 | OwnerSphere< dimension >::OwnerSphere( |
no test coverage detected