X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=common%2FclitkDicomRT_Contour.h;h=940f25a7371e609d3b0186d054958e566ecd52fc;hb=ff6aed00287a68dd74a7647a0451fc050deb5fd9;hp=3e9ad8cf4edb6be410a9a16fe94e7cd1b8ae1978;hpb=303324c27d660280e3ed0a3f40b10bb1bbd5d0c8;p=clitk.git diff --git a/common/clitkDicomRT_Contour.h b/common/clitkDicomRT_Contour.h index 3e9ad8c..940f25a 100644 --- a/common/clitkDicomRT_Contour.h +++ b/common/clitkDicomRT_Contour.h @@ -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; }; //--------------------------------------------------------------------