]> Creatis software - clitk.git/blobdiff - common/clitkDicomRT_Contour.h
Added image info and meta-info
[clitk.git] / common / clitkDicomRT_Contour.h
index 85ebe49b83d56d8034414e9e4c0131f77e1cbc47..940f25a7371e609d3b0186d054958e566ecd52fc 100644 (file)
@@ -39,6 +39,8 @@ namespace clitk {
     void Print(std::ostream & os = std::cout) const;
     bool Read(gdcm::SQItem * item);
     vtkPolyData * GetMesh();
+    vtkPoints * GetPoints() {return mData;}
+    double GetZ() const {return mZ;}
     
   protected:
     void ComputeMesh();
@@ -47,6 +49,8 @@ namespace clitk {
     vtkPoints * mData;
     vtkPolyData * mMesh;
     bool mMeshIsUpToDate;
+    ///Z location of the contour
+    double mZ;
 
   };
   //--------------------------------------------------------------------