aewallin / openvoronoi

2D voronoi diagram for point and line-segment sites using incremental topology-oriented algorithm. C++ with python bindings. Licensed under LGPL2.1.
http://www.anderswallin.net/cam/
GNU Lesser General Public License v2.1
199 stars 68 forks source link

Fix acces to deleted edge #53

Closed mmassing closed 1 year ago

mmassing commented 1 year ago

vertex_in_edge deletes the passed in edge handle (q_edges[m]), so it must not be accessed after the split.

I think this might fix #50?