X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgeometry%2Ftransformedshape.h;h=002f3c1a1cc859485decd5830f940137f33fda16;hb=44bd1d1ab256d397be4e2169c4ca5efdd0569d31;hp=6a14b0b75a1951f69a72cc9c3034fb56161dfc49;hpb=4bb4d03d5a6a0252083d6bc45b8a50fe7b504c51;p=libs%2Fmath.git diff --git a/source/geometry/transformedshape.h b/source/geometry/transformedshape.h index 6a14b0b..002f3c1 100644 --- a/source/geometry/transformedshape.h +++ b/source/geometry/transformedshape.h @@ -29,10 +29,11 @@ public: const Shape &get_shape() const { return *shape; } const AffineTransformation &get_transformation() const { return transformation; } - 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 shape->get_max_ray_intersections(); } virtual unsigned get_intersections(const Ray &, SurfacePoint *, unsigned) const; + virtual Coverage get_coverage(const BoundingBox &) const; }; template @@ -71,8 +72,11 @@ inline TransformedShape *TransformedShape::clone() const } template -inline BoundingBox TransformedShape::get_axis_aligned_bounding_box() const +inline BoundingBox TransformedShape::get_axis_aligned_bounding_box(unsigned detail) const { + if(detail) + return this->bisect_axis_aligned_bounding_box(detail); + return transformation.transform(shape->get_axis_aligned_bounding_box()); } @@ -102,6 +106,12 @@ inline unsigned TransformedShape::get_intersections(const Ray &ray, return count; } +template +inline Coverage TransformedShape::get_coverage(const BoundingBox &bbox) const +{ + return shape->get_coverage(inverse_trans.transform(bbox)); +} + } // namespace Geometry } // namespace Msp