From c9e3b3416f14a5eb5a51a54a9dbce226352dbd15 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Mon, 22 Sep 2008 14:30:39 +0000 Subject: [PATCH] disable drawing of circular arc as it breaks linear kernel demos --- GraphicsView/include/CGAL/Qt/PainterOstream.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GraphicsView/include/CGAL/Qt/PainterOstream.h b/GraphicsView/include/CGAL/Qt/PainterOstream.h index ff52f2a4f7f..6454862ba36 100644 --- a/GraphicsView/include/CGAL/Qt/PainterOstream.h +++ b/GraphicsView/include/CGAL/Qt/PainterOstream.h @@ -86,6 +86,7 @@ public: return *this; } +#if 0 PainterOstream& operator<<(const Circular_arc_2& arc) { const typename K::Circle_2 & circ = arc.supporting_circle(); @@ -117,7 +118,7 @@ public: (int)(alen2 * diff)); return *this; } - +#endif }; } // namespace Qt