mirror of https://github.com/CGAL/cgal
Polished the output operator for a polyline
This commit is contained in:
parent
008c3b6169
commit
d1e5b422fc
|
|
@ -553,8 +553,16 @@ private:
|
|||
|
||||
while (iter != cv.end_segments())
|
||||
{
|
||||
os << " " << *iter;
|
||||
++iter;
|
||||
if (iter == cv.begin_segments())
|
||||
{
|
||||
os << " " << *iter;
|
||||
++iter;
|
||||
}
|
||||
else
|
||||
{
|
||||
os << " <-> " << *iter;
|
||||
++iter;
|
||||
}
|
||||
}
|
||||
return (os);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue