X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgeometry%2Ftransformedshape.h;h=168fbd9732e960dfbc79dc254cb281e8553859f1;hb=HEAD;hp=9a98f3139d85ef56edcd3fcdb1d8ab47116b6fee;hpb=6ff13022b53830d35283905d562c2ef3af198cc1;p=libs%2Fmath.git diff --git a/source/geometry/transformedshape.h b/source/geometry/transformedshape.h index 9a98f31..168fbd9 100644 --- a/source/geometry/transformedshape.h +++ b/source/geometry/transformedshape.h @@ -1,22 +1,25 @@ #ifndef MSP_GEOMETRY_TRANSFORMEDSHAPE_H_ #define MSP_GEOMETRY_TRANSFORMEDSHAPE_H_ -#include "affinetransformation.h" -#include "ray.h" +#include "affinetransform.h" #include "shape.h" namespace Msp { namespace Geometry { +/** +A shape modified by an affine transformation. +*/ template -class TransformedShape +class TransformedShape: public Shape { private: Shape *shape; - AffineTransformation transformation; + AffineTransform transformation; + AffineTransform inverse_trans; public: - TransformedShape(const Shape &, const AffineTransformation &); + TransformedShape(const Shape &, const AffineTransform &); TransformedShape(const TransformedShape &); TransformedShape &operator=(const TransformedShape &); ~TransformedShape(); @@ -24,21 +27,27 @@ 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 bool check_intersection(const Ray &) 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 -inline TransformedShape::TransformedShape(const Shape &s, const AffineTransformation &t): +inline TransformedShape::TransformedShape(const Shape &s, const AffineTransform &t): shape(s.clone()), - transformation(t) + transformation(t), + inverse_trans(invert(t)) { } template -inline TransformedShape::TransformedShape(const TransformedShape &other): +inline TransformedShape::TransformedShape(const TransformedShape &other): shape(other.shape->clone()), - transformation(other.transformation) + transformation(other.transformation), + inverse_trans(other.inverse_trans) { } template @@ -46,7 +55,8 @@ inline TransformedShape &TransformedShape::operator=(const Transform { delete shape; shape = other.shape->clone(); - transformation = other.transformation(); + transformation = other.transformation; + inverse_trans = other.inverse_trans; } template @@ -62,13 +72,67 @@ inline TransformedShape *TransformedShape::clone() const } template -inline bool TransformedShape::check_intersection(const Ray &ray) const +inline BoundingBox TransformedShape::get_axis_aligned_bounding_box(unsigned detail) const { - // TODO cache the inverse transformation for performance - LinAl::SquareMatrix inverse_trans = LinAl::invert(transformation.get_matrix()); - Ray trans_ray(reduce_vector(inverse_trans*augment_vector(ray.get_start(), T(1))), - reduce_vector(inverse_trans*augment_vector(ray.get_direction(), T(0)))); - return shape->check_intersection(trans_ray); + if(detail) + return this->bisect_axis_aligned_bounding_box(detail); + + return transformation.transform(shape->get_axis_aligned_bounding_box()); +} + +template +inline bool TransformedShape::contains(const LinAl::Vector &point) const +{ + return shape->contains(inverse_trans.transform(point)); +} + +template +inline unsigned TransformedShape::get_intersections(const Ray &ray, SurfacePoint *points, unsigned size) const +{ + Ray local_ray = inverse_trans.transform(ray); + + unsigned count = shape->get_intersections(local_ray, points, size); + if(points) + { + for(unsigned i=0; i +inline Coverage TransformedShape::get_coverage(const BoundingBox &bbox) const +{ + 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