From ff3cc601c55c3248132ec6b1aeb356828cc8e8ff Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Sun, 19 May 2024 16:58:20 -0400 Subject: [PATCH] DOC: Lines to Vertices in method description --- include/itkPolyData.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/itkPolyData.h b/include/itkPolyData.h index 9198507..839e11a 100644 --- a/include/itkPolyData.h +++ b/include/itkPolyData.h @@ -77,7 +77,7 @@ class ITK_TEMPLATE_EXPORT PolyData: public DataObject PointsContainer * GetPoints(); const PointsContainer * GetPoints() const; - /** Lines in format [1 pointIndex1 1 pointIndex2 1 pointIndex3 ... ] */ + /** Vertices in format [1 pointIndex1 1 pointIndex2 1 pointIndex3 ... ] */ void SetVertices(CellsContainer *); CellsContainer * GetVertices(); const CellsContainer* GetVertices() const;