Fix and locally tested

This commit is contained in:
Andreas Fabri 2022-12-09 07:45:42 +00:00
parent aa8da893c2
commit 97be3701e1
1 changed files with 1 additions and 1 deletions

View File

@ -578,7 +578,7 @@ MainWindow::loadWKT(QString filename)
cdt.insert_constraint(p.outer_boundary().vertices_begin(), p.outer_boundary().vertices_end(),true);
for(Polygon::Hole_const_iterator h_it = p.holes_begin(); h_it != p.holes_end(); ++h_it){
cdt.insert_constraint(h_it->vertices_begin(); e_it != h_it->vertices_end(),true);
cdt.insert_constraint(h_it->vertices_begin(), h_it->vertices_end(),true);
}
}