X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgeometry%2Ftransformedshape.h;h=6a14b0b75a1951f69a72cc9c3034fb56161dfc49;hb=4bb4d03d5a6a0252083d6bc45b8a50fe7b504c51;hp=2168126242ab88d1823230ac3b56f34df0eaa564;hpb=6843cbaeaca73ecdbebe852b7e7899ce48f8a83c;p=libs%2Fmath.git diff --git a/source/geometry/transformedshape.h b/source/geometry/transformedshape.h index 2168126..6a14b0b 100644 --- a/source/geometry/transformedshape.h +++ b/source/geometry/transformedshape.h @@ -2,12 +2,14 @@ #define MSP_GEOMETRY_TRANSFORMEDSHAPE_H_ #include "affinetransformation.h" -#include "ray.h" #include "shape.h" namespace Msp { namespace Geometry { +/** +A shape modified by an affine transformation. +*/ template class TransformedShape: public Shape { @@ -27,8 +29,10 @@ public: const Shape &get_shape() const { return *shape; } const AffineTransformation &get_transformation() const { return transformation; } - virtual HyperBox get_axis_aligned_bounding_box() const; - virtual bool check_intersection(const Ray &) const; + virtual BoundingBox get_axis_aligned_bounding_box() 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; }; template @@ -39,7 +43,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) @@ -67,18 +71,35 @@ 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(); + return transformation.transform(shape->get_axis_aligned_bounding_box()); } template -inline bool TransformedShape::check_intersection(const Ray &ray) const +inline bool TransformedShape::contains(const LinAl::Vector &point) const { - Ray local_ray(inverse_trans.transform(ray.get_start()), - inverse_trans.transform_linear(ray.get_direction())); - return shape->check_intersection(local_ray); + 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