diff Framework/Toolbox/Slice.cpp @ 110:53025eecbc95 wasm

renamed SliceGeometry as CoordinateSystem3D
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 14 Jun 2017 15:50:38 +0200
parents fcec0ab44054
children 2eca030792aa
line wrap: on
line diff
--- a/Framework/Toolbox/Slice.cpp	Wed Jun 14 15:34:08 2017 +0200
+++ b/Framework/Toolbox/Slice.cpp	Wed Jun 14 15:50:38 2017 +0200
@@ -53,7 +53,7 @@
     if (dataset.GetStringValue(position, OrthancPlugins::DICOM_TAG_IMAGE_POSITION_PATIENT) &&
         dataset.GetStringValue(orientation, OrthancPlugins::DICOM_TAG_IMAGE_ORIENTATION_PATIENT))
     {
-      geometry_ = SliceGeometry(position, orientation);
+      geometry_ = CoordinateSystem3D(position, orientation);
     }
       
     if (reader.GetUnsignedIntegerValue(width_, OrthancPlugins::DICOM_TAG_COLUMNS) &&
@@ -95,7 +95,7 @@
   }
 
   
-  const SliceGeometry& Slice::GetGeometry() const
+  const CoordinateSystem3D& Slice::GetGeometry() const
   {
     if (type_ == Type_Invalid)
     {
@@ -172,7 +172,7 @@
   }
 
 
-  bool Slice::ContainsPlane(const SliceGeometry& plane) const
+  bool Slice::ContainsPlane(const CoordinateSystem3D& plane) const
   {
     if (type_ == Type_Invalid)
     {