X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgeometry%2Fhypersphere.h;h=13e4278430b8b5e2a811974a1959d54dac8bd305;hb=44bd1d1ab256d397be4e2169c4ca5efdd0569d31;hp=4df03fed0eb433abb38d6df8e9375fc42f78befe;hpb=fb9e6b5ff48e10ea2217cf539e0461956abf02cf;p=libs%2Fmath.git diff --git a/source/geometry/hypersphere.h b/source/geometry/hypersphere.h index 4df03fe..13e4278 100644 --- a/source/geometry/hypersphere.h +++ b/source/geometry/hypersphere.h @@ -27,10 +27,11 @@ public: T get_radius() const { return radius; } - virtual BoundingBox get_axis_aligned_bounding_box() const; + virtual BoundingBox get_axis_aligned_bounding_box(unsigned = 0) const; virtual bool contains(const LinAl::Vector &) const; virtual unsigned get_max_ray_intersections() const { return 2; } virtual unsigned get_intersections(const Ray &, SurfacePoint *, unsigned) const; + virtual Coverage get_coverage(const BoundingBox &) const; }; template @@ -48,7 +49,7 @@ inline HyperSphere *HyperSphere::clone() const } template -inline BoundingBox HyperSphere::get_axis_aligned_bounding_box() const +inline BoundingBox HyperSphere::get_axis_aligned_bounding_box(unsigned) const { LinAl::Vector extent; for(unsigned i=0; i::get_intersections(const Ray &ray, Surfa points[n].position = ray.get_start()+ray.get_direction()*x; points[n].normal = normalize(points[n].position); points[n].distance = x; + points[n].entry = (i<0); } ++n; @@ -94,6 +96,41 @@ inline unsigned HyperSphere::get_intersections(const Ray &ray, Surfa return n; } +template +inline Coverage HyperSphere::get_coverage(const BoundingBox &bbox) const +{ + const LinAl::Vector &min_pt = bbox.get_minimum_point(); + const LinAl::Vector &max_pt = bbox.get_maximum_point(); + + LinAl::Vector far_point; + for(unsigned i=0; iT(0)) + spanned_dimensions |= 1< point; + for(unsigned j=0; j>j)&1)) + point[j] = ((i>>j)&1 ? max_pt[j] : min_pt[j]); + + if(contains(point)) + return PARTIAL_COVERAGE; + } + + return NO_COVERAGE; +} + } // namespace Geometry } // namespace Msp