diff Framework/Volumes/ImageBuffer3D.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 e0ddd8cad909
children 2eca030792aa
line wrap: on
line diff
--- a/Framework/Volumes/ImageBuffer3D.h	Wed Jun 14 15:34:08 2017 +0200
+++ b/Framework/Volumes/ImageBuffer3D.h	Wed Jun 14 15:50:38 2017 +0200
@@ -22,7 +22,7 @@
 #pragma once
 
 #include "../Enumerations.h"
-#include "../Toolbox/SliceGeometry.h"
+#include "../Toolbox/CoordinateSystem3D.h"
 #include "../Toolbox/ParallelSlices.h"
 
 #include "../../Resources/Orthanc/Core/Images/Image.h"
@@ -32,7 +32,7 @@
   class ImageBuffer3D : public boost::noncopyable
   {
   private:
-    SliceGeometry          axialGeometry_;
+    CoordinateSystem3D     axialGeometry_;
     Vector                 voxelDimensions_;
     Orthanc::Image         image_;
     Orthanc::PixelFormat   format_;
@@ -58,7 +58,7 @@
 
     // Set the geometry of the first axial slice (i.e. the one whose
     // depth == 0)
-    void SetAxialGeometry(const SliceGeometry& geometry);
+    void SetAxialGeometry(const CoordinateSystem3D& geometry);
 
     void SetVoxelDimensions(double x,
                             double y,