X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgeometry%2Ftransformedshape.h;h=168fbd9732e960dfbc79dc254cb281e8553859f1;hb=HEAD;hp=91790fc77276fd8aedbb75f318b856d775334cd2;hpb=a29d2c17ca70a3ed5df1e863c92ccd851d5dba6b;p=libs%2Fmath.git diff --git a/source/geometry/transformedshape.h b/source/geometry/transformedshape.h index 91790fc..168fbd9 100644 --- a/source/geometry/transformedshape.h +++ b/source/geometry/transformedshape.h @@ -1,7 +1,7 @@ #ifndef MSP_GEOMETRY_TRANSFORMEDSHAPE_H_ #define MSP_GEOMETRY_TRANSFORMEDSHAPE_H_ -#include "affinetransformation.h" +#include "affinetransform.h" #include "shape.h" namespace Msp { @@ -15,11 +15,11 @@ class TransformedShape: public Shape { private: Shape *shape; - AffineTransformation transformation; - AffineTransformation inverse_trans; + AffineTransform transformation; + AffineTransform inverse_trans; public: - TransformedShape(const Shape &, const AffineTransformation &); + TransformedShape(const Shape &, const AffineTransform &); TransformedShape(const TransformedShape &); TransformedShape &operator=(const TransformedShape &); ~TransformedShape(); @@ -27,9 +27,9 @@ public: virtual TransformedShape *clone() const; const Shape &get_shape() const { return *shape; } - const AffineTransformation &get_transformation() const { return transformation; } + const AffineTransform &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; @@ -37,7 +37,7 @@ public: }; template -inline TransformedShape::TransformedShape(const Shape &s, const AffineTransformation &t): +inline TransformedShape::TransformedShape(const Shape &s, const AffineTransform &t): shape(s.clone()), transformation(t), inverse_trans(invert(t)) @@ -72,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()); } @@ -106,7 +109,30 @@ inline unsigned TransformedShape::get_intersections(const Ray &ray, template inline Coverage TransformedShape::get_coverage(const BoundingBox &bbox) const { - return shape->get_coverage(inverse_trans.transform(bbox)); + BoundingBox local_bbox = inverse_trans.transform(bbox); + Coverage coverage = shape->get_coverage(local_bbox); + if(coverage==PARTIAL_COVERAGE) + { + BoundingBox outer_bbox = transformation.transform(local_bbox); + LinAl::Vector min_pt = local_bbox.get_minimum_point(); + LinAl::Vector max_pt = local_bbox.get_maximum_point(); + for(unsigned i=0; i(min_pt, max_pt); + if(shape->get_coverage(local_bbox)>=PARTIAL_COVERAGE) + return PARTIAL_COVERAGE; + else + return UNCERTAIN_COVERAGE; + } + else + return coverage; } } // namespace Geometry