5 #ifndef _SPICA_BSPHERE_DETAIL_H_
6 #define _SPICA_BSPHERE_DETAIL_H_
11 BSphere_<T>::BSphere_()
17 BSphere_<T>::BSphere_(
const Point3d ¢er,
double radius)
23 BSphere_<T>::BSphere_(
const BSphere_<T> &sph)
29 BSphere_<T> & BSphere_<T>::operator=(
const BSphere_<T> &sph) {
30 this->center_ = sph.center_;
31 this->radius_ = sph.radius_;
37 #endif // _SPICA_BSPHERE_DETAIL_H_