X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgeometry%2Ftransformedshape.h;h=58e571a9db389a058cdb8ab3de1343b4ee87cb3e;hb=09cc3a8648dd20e9a07d669b353c4a120b67c1c4;hp=bf508f9b1da31be6145fd972e350481b9502d74b;hpb=fe9d42c7cb18bc1db6d278bdc2f8372822d025bf;p=libs%2Fmath.git diff --git a/source/geometry/transformedshape.h b/source/geometry/transformedshape.h index bf508f9..58e571a 100644 --- a/source/geometry/transformedshape.h +++ b/source/geometry/transformedshape.h @@ -2,6 +2,7 @@ #define MSP_GEOMETRY_TRANSFORMEDSHAPE_H_ #include "affinetransformation.h" +#include "boundingbox.h" #include "ray.h" #include "shape.h" @@ -30,12 +31,11 @@ public: const Shape &get_shape() const { return *shape; } const AffineTransformation &get_transformation() const { return transformation; } - virtual HyperBox get_axis_aligned_bounding_box() const; + virtual BoundingBox get_axis_aligned_bounding_box() const; virtual bool contains(const LinAl::Vector &) const; private: Ray make_local_ray(const Ray &) const; public: - virtual bool check_intersection(const Ray &) const; virtual unsigned get_max_ray_intersections() const { return shape->get_max_ray_intersections(); } virtual unsigned get_intersections(const Ray &, SurfacePoint *, unsigned) const; }; @@ -48,7 +48,7 @@ inline TransformedShape::TransformedShape(const Shape &s, const Affi { } template -inline TransformedShape::TransformedShape(const TransformedShape &other): +inline TransformedShape::TransformedShape(const TransformedShape &other): shape(other.shape->clone()), transformation(other.transformation), inverse_trans(other.inverse_trans) @@ -76,10 +76,28 @@ inline TransformedShape *TransformedShape::clone() const } template -inline HyperBox TransformedShape::get_axis_aligned_bounding_box() const +inline BoundingBox TransformedShape::get_axis_aligned_bounding_box() const { - // XXX This is not correct for most shapes - return shape->get_axis_aligned_bounding_box(); + BoundingBox inner_bbox = shape->get_axis_aligned_bounding_box(); + + LinAl::Vector min_pt; + LinAl::Vector max_pt; + for(unsigned i=0; i<(1< point; + for(unsigned j=0; j>j)&1 ? inner_bbox.get_maximum_coordinate(j) : inner_bbox.get_minimum_coordinate(j)); + + point = transformation.transform(point); + + for(unsigned j=0; j(min_pt, max_pt); } template @@ -96,12 +114,6 @@ inline Ray TransformedShape::make_local_ray(const Ray &ray) co return Ray(inverse_trans.transform(ray.get_start()), local_dir, ray.get_limit()*distortion); } -template -inline bool TransformedShape::check_intersection(const Ray &ray) const -{ - return shape->check_intersection(make_local_ray(ray)); -} - template inline unsigned TransformedShape::get_intersections(const Ray &ray, SurfacePoint *points, unsigned size) const {