CGAL 4.4 Arrangement insert(arr,curve) crashes with some curves
问题 I tried to use Arrangement from CGAL, but for not clear reasons program crashes for some curves in CGAL 4.4 (not such problem in previous versions 4.3). Look at simple overview of problem, curve is outline of letter D, converted into line segments: dDouble dpts { 16.261, 95.267, ... 95.267, 16.261, 95.267}; dPoint pts = ... // converting to exact points with 3 decimal places Curve_2 cu = Curve_2(pts.begin(), pts.end()); insert(arr, cu); // <---- here crash, supposed bug in CGAL 4.4 ------