Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zippy84 committed Sep 26, 2023
1 parent 2bbe57d commit fa92c71
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vtkPolyDataBooleanFilter.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -2064,13 +2064,14 @@ void vtkPolyDataBooleanFilter::ResolveOverlaps (vtkPolyData *pd, PolyStripsType

contLines->GetPoint(itr3->first, pt);

id = pd->GetPoints()->InsertNextPoint(pt);

#ifdef DEBUG
std::cout << cells->GetId(i)
<< ": " << edgeA[1] << " -> " << id
<< std::endl;
#endif

id = pd->GetPoints()->InsertNextPoint(pt);
pd->ReplaceCellPoint(cells->GetId(i), edgeA[1], id);

break;
Expand Down

0 comments on commit fa92c71

Please sign in to comment.