X-Git-Url: http://git.tdb.fi/?p=libs%2Fmath.git;a=blobdiff_plain;f=source%2Fgeometry%2Ftransformedshape.h;h=90c37b0bb0a2b234c0e7929796846c25cc7e4648;hp=34fd2989f2cfeaadddcf40ef6822ae2fb37c62d0;hb=24f239e418599c13a9d0bdc4942c188ccf0a8437;hpb=c135ff2480f4e2aaf05b0206631bb0e1b5d73fad diff --git a/source/geometry/transformedshape.h b/source/geometry/transformedshape.h index 34fd298..90c37b0 100644 --- a/source/geometry/transformedshape.h +++ b/source/geometry/transformedshape.h @@ -32,6 +32,9 @@ public: virtual HyperBox 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; @@ -85,19 +88,25 @@ inline bool TransformedShape::contains(const LinAl::Vector &point) c return shape->contains(inverse_trans.transform(point)); } +template +inline Ray TransformedShape::make_local_ray(const Ray &ray) const +{ + LinAl::Vector local_dir = inverse_trans.transform_linear(ray.get_direction()); + float distortion = local_dir.norm(); + return Ray(inverse_trans.transform(ray.get_start()), local_dir, ray.get_limit()*distortion); +} + template inline bool TransformedShape::check_intersection(const Ray &ray) 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->check_intersection(make_local_ray(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())); + Ray local_ray = make_local_ray(ray); + unsigned count = shape->get_intersections(local_ray, points, size); if(points) {