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