]> Creatis software - clitk.git/blobdiff - common/clitkDicomRT_Contour.h
Do not propose an option that you have removed!
[clitk.git] / common / clitkDicomRT_Contour.h
index 3e9ad8cf4edb6be410a9a16fe94e7cd1b8ae1978..940f25a7371e609d3b0186d054958e566ecd52fc 100644 (file)
@@ -40,6 +40,7 @@ namespace clitk {
     bool Read(gdcm::SQItem * item);
     vtkPolyData * GetMesh();
     vtkPoints * GetPoints() {return mData;}
+    double GetZ() const {return mZ;}
     
   protected:
     void ComputeMesh();
@@ -48,6 +49,8 @@ namespace clitk {
     vtkPoints * mData;
     vtkPolyData * mMesh;
     bool mMeshIsUpToDate;
+    ///Z location of the contour
+    double mZ;
 
   };
   //--------------------------------------------------------------------