From af55795d499ba83b2cfa7e28d403d0b944d45af0 Mon Sep 17 00:00:00 2001 From: curt Date: Wed, 31 Mar 1999 23:46:38 +0000 Subject: [PATCH] Debuggin output tweaks. --- Clipper/clipper.cxx | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Clipper/clipper.cxx b/Clipper/clipper.cxx index 78f3dc21c..a088f0ffb 100644 --- a/Clipper/clipper.cxx +++ b/Clipper/clipper.cxx @@ -177,7 +177,8 @@ bool FGClipper::clip_all(const point2d& min, const point2d& max) { // process polygons in priority order for ( int i = 0; i < FG_MAX_AREA_TYPES; ++i ) { - cout << "num polys of this type = " << polys_in.polys[i].size() << endl; + // cout << "num polys of this type = " + // << polys_in.polys[i].size() << endl; current = polys_in.polys[i].begin(); last = polys_in.polys[i].end(); for ( ; current != last; ++current ) { @@ -201,9 +202,9 @@ bool FGClipper::clip_all(const point2d& min, const point2d& max) { *result_diff = tmp; result_union = tmp; } else { - cout << "DIFF: tmp.num_contours = " << tmp.num_contours - << " accum.num_contours = " << accum.num_contours - << endl; + // cout << "DIFF: tmp.num_contours = " << tmp.num_contours + // << " accum.num_contours = " << accum.num_contours + // << endl; // tmp output accum FILE *ofp= fopen("tmp-debug", "w"); gpc_write_polygon(ofp, &tmp); @@ -272,6 +273,9 @@ bool FGClipper::clip_all(const point2d& min, const point2d& max) { // $Log$ +// Revision 1.9 1999/03/31 23:46:38 curt +// Debuggin output tweaks. +// // Revision 1.8 1999/03/30 23:49:22 curt // Added some debugging output. //