diff --git a/Code/Common/otbPolyLineParametricPathWithValue.txx b/Code/Common/otbPolyLineParametricPathWithValue.txx index ed4d60b6edabdce758cf29574a66e50b5bc0a51d..8724e8d56a7e1637b8b52a9a33024ca8f1d09883 100644 --- a/Code/Common/otbPolyLineParametricPathWithValue.txx +++ b/Code/Common/otbPolyLineParametricPathWithValue.txx @@ -81,6 +81,13 @@ namespace otb ::PrintSelf(std::ostream& os, itk::Indent indent) const { Superclass::PrintSelf(os, indent); + VertexListConstIteratorType it = this->GetVertexList()->Begin(); + while(it != this->GetVertexList()->End()) + { + os << it.Value() << " - "; + it++; + } + os << std::endl; } } // end namespace otb