From eefe0df984bdde957a68db4232fcceeac723de87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Wed, 18 Sep 2019 20:37:51 +0200 Subject: [PATCH] Remove warning about wrong bounding box calculation. Still wrong but the warning is annoying and problems are negligible. --- geometric/bounding-box.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geometric/bounding-box.c b/geometric/bounding-box.c index 65dc781..0895636 100644 --- a/geometric/bounding-box.c +++ b/geometric/bounding-box.c @@ -151,7 +151,7 @@ void bounding_box_calculate_path_box(GList *vertices, double thickness, GList *vertex_iterator; struct vector_2d pt; - printf("Warning! Function bounding_box_calculate_path_box not yet implemented correctly!\n"); + //printf("Warning! Function bounding_box_calculate_path_box not yet implemented correctly!\n"); if (!vertices || !box) return;