예제 #1
0
파일: Vertex.hpp 프로젝트: WilstonOreo/GEx
 bounds_type bounds() const
 {
   return bounds_type(v_,v_);
 }
예제 #2
0
 bounds_type     client_bounds()
 {
     return bounds_type( client_extent() );
 }
예제 #3
0
 bounds_type     window_bounds()
 {
     return bounds_type( window_topleft(), window_extent() );
 }
예제 #4
0
 BoundingBox(point_type _min, point_type _max) : 
   bounds_(bounds_type(_min,_max)) 
 {
 }
예제 #5
0
 BoundingBox() : bounds_(bounds_type()) {}
예제 #6
0
파일: Sphere.hpp 프로젝트: aeickho/Tomo
 bounds_type bounds() const
 {      
   point_type _rP(radius_,radius_,radius_),
              _rM(-radius_,-radius_,-radius_);
   return bounds_type(center_ + _rM, center_ + _rP);
 }