diff --git a/Circular_kernel_2/TODO b/Circular_kernel_2/TODO index 06b2018cfdf..7d3c8705f49 100644 --- a/Circular_kernel_2/TODO +++ b/Circular_kernel_2/TODO @@ -5,7 +5,8 @@ manual orientation: NO (only when points have same delta, so don't document) add Do_intersect_2 -clean demos +add Qt output for bbox objects -> demo with Exact_ck +also, check that examples use Exact_CK clean manual AK (concepts like Polynomial_1_2, access to a() b() c() ? used in solve to check that solutions are the same) diff --git a/Circular_kernel_2/demo/Circular_kernel_2/demo.cpp b/Circular_kernel_2/demo/Circular_kernel_2/demo.cpp index 609f790b867..d4505542637 100644 --- a/Circular_kernel_2/demo/Circular_kernel_2/demo.cpp +++ b/Circular_kernel_2/demo/Circular_kernel_2/demo.cpp @@ -66,6 +66,7 @@ int main() { #include #include +// #include #include #include @@ -75,11 +76,14 @@ int main() { typedef CGAL::Quotient NT; //typedef CGAL::Quotient NT; //typedef CGAL::Lazy_exact_nt NT; +//typedef boost::variant< Circular_arc_2, Line_arc_2 > Arc_2; +//typedef std::vector typedef CGAL::Cartesian Linear_k; typedef CGAL::Algebraic_kernel_for_circles_2_2 Algebraic_k; typedef CGAL::Circular_kernel_2 Circular_k; +// typedef CGAL::Exact_circular_kernel_2 Circular_k; typedef Circular_k::Line_arc_2 Line_arc_2; typedef Circular_k::Segment_2 Segment; @@ -91,6 +95,8 @@ typedef CGAL::Arr_circular_line_arc_traits Arc_2; +//typedef std::vector typedef std::vector ArcContainer; typedef CGAL::Arrangement_2 Pmwx;