]> git.tdb.fi Git - libs/math.git/blobdiff - source/geometry/negation.h
Fix composite shape ray intersection logic
[libs/math.git] / source / geometry / negation.h
index c01763d1c8eed6fa399090c27210e51c54553a20..8e2b3f41a6d7c30681026176330d0ed1a04d965e 100644 (file)
@@ -18,6 +18,9 @@ private:
 
 public:
        Negation(const Shape<T, D> &);
+       Negation(const Negation &);
+       Negation &operator=(const Negation &);
+       ~Negation();
 
        virtual Negation *clone() const;
 
@@ -34,6 +37,25 @@ inline Negation<T, D>::Negation(const Shape<T, D> &s):
        shape(s.clone())
 { }
 
+template<typename T, unsigned D>
+inline Negation<T, D>::Negation(const Negation<T, D> &other):
+       shape(other.shape->clone())
+{ }
+
+template<typename T, unsigned D>
+inline Negation<T, D> &Negation<T, D>::operator=(const Negation<T, D> &other)
+{
+       delete shape;
+       shape = other.shape->clone();
+       return *this;
+}
+
+template<typename T, unsigned D>
+inline Negation<T, D>::~Negation()
+{
+       delete shape;
+}
+
 template<typename T, unsigned D>
 inline Negation<T, D> *Negation<T, D>::clone() const
 {
@@ -57,7 +79,10 @@ inline unsigned Negation<T, D>::get_intersections(const Ray<T, D> &ray, SurfaceP
 {
        unsigned count = shape->get_intersections(ray, points, size);
        for(unsigned i=0; i<count; ++i)
+       {
                points[i].normal = -points[i].normal;
+               points[i].entry = !points[i].entry;
+       }
        return count;
 }