]> git.tdb.fi Git - libs/math.git/blobdiff - source/geometry/negation.h
Use numeric literals in place of M_PI
[libs/math.git] / source / geometry / negation.h
index beb3e4e7b845d91edcaff45555add550a8165cd3..8e2b3f41a6d7c30681026176330d0ed1a04d965e 100644 (file)
@@ -1,7 +1,6 @@
 #ifndef MSP_GEOMETRY_NEGATION_H_
 #define MSP_GEOMETRY_NEGATION_H_
 
-#include "boundingbox.h"
 #include "shape.h"
 
 namespace Msp {
@@ -19,6 +18,9 @@ private:
 
 public:
        Negation(const Shape<T, D> &);
+       Negation(const Negation &);
+       Negation &operator=(const Negation &);
+       ~Negation();
 
        virtual Negation *clone() const;
 
@@ -35,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
 {
@@ -58,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;
 }