You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While generating a voronoi diagram I get the error Err value: InternalError("activate_circle_event could not find node by key 10")
I managed to reduce the crashing input from 272,000 line segments to just 6
The data format is a line segment on each line with x1, y1, x2, y2.
I've been trying to debug it, but I'm not too familiar with the internals of voronoi diagram creation so I have been unable to solve it. Would be very nice if you could look at it.
The text was updated successfully, but these errors were encountered:
I found that the issue is with the unique_endpoints calculation in lazy_circle_formation.rs in the pps function. Commenting out that addition (the block of code is new compared with the original boost) restores the loop behaviour to exactly how Boost has it.
Thank you for your input.
Yes, i will have to investigate this further, i thought i could be clever and avoid calculating the circle event position occurring between two linked line segments, because the position is already known.
As a workaround i will try to find some time to disable my "improvement"
While generating a voronoi diagram I get the error
Err value: InternalError("activate_circle_event could not find node by key 10")
I managed to reduce the crashing input from 272,000 line segments to just 6
The data format is a line segment on each line with x1, y1, x2, y2.
I've been trying to debug it, but I'm not too familiar with the internals of voronoi diagram creation so I have been unable to solve it. Would be very nice if you could look at it.
The text was updated successfully, but these errors were encountered: