remove cout

This commit is contained in:
Jane Tournois 2025-09-26 10:16:16 +02:00
parent 389bb11390
commit 2e15f13dc4
1 changed files with 0 additions and 1 deletions

View File

@ -321,7 +321,6 @@ public:
// If polyline is a loop, ensure that distance is given from start_it // If polyline is a loop, ensure that distance is given from start_it
if(is_loop()) if(is_loop())
{ {
std::cout << "is loop" << std::endl;
if(distance < FT(0)) { distance += length(); } if(distance < FT(0)) { distance += length(); }
else if(distance > length()) { distance -= length(); } else if(distance > length()) { distance -= length(); }
} }