X-Git-Url: http://git.tdb.fi/?p=libs%2Fmath.git;a=blobdiff_plain;f=source%2Fgeometry%2Ftransformedshape.h;h=9387123508dcf081341c076f8c4e41970a10ead0;hp=90c37b0bb0a2b234c0e7929796846c25cc7e4648;hb=2826730b5d68d1ad74dc6363af43ca796f96caa2;hpb=24f239e418599c13a9d0bdc4942c188ccf0a8437 diff --git a/source/geometry/transformedshape.h b/source/geometry/transformedshape.h index 90c37b0..9387123 100644 --- a/source/geometry/transformedshape.h +++ b/source/geometry/transformedshape.h @@ -2,7 +2,6 @@ #define MSP_GEOMETRY_TRANSFORMEDSHAPE_H_ #include "affinetransformation.h" -#include "ray.h" #include "shape.h" namespace Msp { @@ -30,14 +29,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(unsigned = 0) 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; + virtual Coverage get_coverage(const BoundingBox &) const; }; template @@ -48,7 +44,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 +72,12 @@ inline TransformedShape *TransformedShape::clone() const } template -inline HyperBox TransformedShape::get_axis_aligned_bounding_box() const +inline BoundingBox TransformedShape::get_axis_aligned_bounding_box(unsigned detail) const { - // XXX This is not correct for most shapes - return shape->get_axis_aligned_bounding_box(); + if(detail) + return this->bisect_axis_aligned_bounding_box(detail); + + return transformation.transform(shape->get_axis_aligned_bounding_box()); } template @@ -88,24 +86,10 @@ 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 -{ - 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 = make_local_ray(ray); + Ray local_ray = inverse_trans.transform(ray); unsigned count = shape->get_intersections(local_ray, points, size); if(points) @@ -115,13 +99,42 @@ inline unsigned TransformedShape::get_intersections(const Ray &ray, points[i].position = transformation.transform(points[i].position); /* XXX This is not correct for nonuniform scaling. Inverse of the transpose of the upper DxD part of the matrix should be used. */ - points[i].normal = transformation.transform(points[i].normal); + points[i].normal = transformation.transform_linear(points[i].normal); points[i].distance = inner_product(points[i].position-ray.get_start(), ray.get_direction()); } } return count; } +template +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 } // namespace Msp