X-Git-Url: http://git.tdb.fi/?p=libs%2Fmath.git;a=blobdiff_plain;f=source%2Fgeometry%2Ftransformedshape.h;h=ea7281f746067c8d0c4dcb757edd1120ee0c903b;hp=2168126242ab88d1823230ac3b56f34df0eaa564;hb=9260eee3126731c1e6b54ce3407be757d0d71716;hpb=6843cbaeaca73ecdbebe852b7e7899ce48f8a83c diff --git a/source/geometry/transformedshape.h b/source/geometry/transformedshape.h index 2168126..ea7281f 100644 --- a/source/geometry/transformedshape.h +++ b/source/geometry/transformedshape.h @@ -28,7 +28,10 @@ public: const AffineTransformation &get_transformation() const { return transformation; } virtual HyperBox get_axis_aligned_bounding_box() const; + virtual bool contains(const LinAl::Vector &) const; 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; }; template @@ -73,6 +76,12 @@ inline HyperBox TransformedShape::get_axis_aligned_bounding_box() co return 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 bool TransformedShape::check_intersection(const Ray &ray) const { @@ -81,6 +90,25 @@ inline bool TransformedShape::check_intersection(const Ray &ray) con return shape->check_intersection(local_ray); } +template +inline unsigned TransformedShape::get_intersections(const Ray &ray, SurfacePoint *points, unsigned size) const +{ + Ray local_ray(inverse_trans.transform(ray.get_start()), + inverse_trans.transform_linear(ray.get_direction())); + unsigned count = shape->get_intersections(local_ray, points, size); + if(points) + { + for(unsigned i=0; i