From b524989da478b39636ad17d5b65b6a62ba271f74 Mon Sep 17 00:00:00 2001 From: curt Date: Mon, 20 Nov 2000 16:53:52 +0000 Subject: [PATCH] Debugging tweak. --- src/Lib/Polygon/polygon.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Lib/Polygon/polygon.cxx b/src/Lib/Polygon/polygon.cxx index a5c159f1..5b93e407 100644 --- a/src/Lib/Polygon/polygon.cxx +++ b/src/Lib/Polygon/polygon.cxx @@ -159,10 +159,11 @@ bool FGPolygon::is_inside( int a, int b ) const { // B is "inside" A if the polygon_diff( B, A ) is not null. FGPolygon result = polygon_diff( B, A ); - cout << " is_inside() result = " << result.contours() << endl; if ( result.contours() == 0 ) { + cout << " is_inside() result = true" << endl; return true; } + cout << " is_inside() result = false" << endl; return false; }