diff Framework/Toolbox/ParallelSlices.h @ 110:53025eecbc95 wasm

renamed SliceGeometry as CoordinateSystem3D
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 14 Jun 2017 15:50:38 +0200
parents c2dc924f1a63
children e2fe9352f240
line wrap: on
line diff
--- a/Framework/Toolbox/ParallelSlices.h	Wed Jun 14 15:34:08 2017 +0200
+++ b/Framework/Toolbox/ParallelSlices.h	Wed Jun 14 15:50:38 2017 +0200
@@ -21,15 +21,15 @@
 
 #pragma once
 
-#include "SliceGeometry.h"
+#include "CoordinateSystem3D.h"
 
 namespace OrthancStone
 {
   class ParallelSlices : public boost::noncopyable
   {
   private:
-    Vector                       normal_;
-    std::vector<SliceGeometry*>  slices_;
+    Vector                            normal_;
+    std::vector<CoordinateSystem3D*>  slices_;
     
     ParallelSlices& operator= (const ParallelSlices& other);  // Forbidden
 
@@ -45,7 +45,7 @@
       return normal_;
     }
 
-    void AddSlice(const SliceGeometry& slice);
+    void AddSlice(const CoordinateSystem3D& slice);
 
     void AddSlice(const Vector& origin,
                   const Vector& axisX,
@@ -56,7 +56,7 @@
       return slices_.size();
     }
 
-    const SliceGeometry& GetSlice(size_t index) const;
+    const CoordinateSystem3D& GetSlice(size_t index) const;
 
     bool ComputeClosestSlice(size_t& closestSlice,
                              double& closestDistance,