From 5b7e21a8596ff3a9ceeb634bf91a2100f6ef4346 Mon Sep 17 00:00:00 2001
From: curt <curt>
Date: Tue, 20 Oct 1998 15:48:44 +0000
Subject: [PATCH] Removed an extraneous output message.

---
 Objects/obj.cxx | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/Objects/obj.cxx b/Objects/obj.cxx
index 7818a8c07..ee2652248 100644
--- a/Objects/obj.cxx
+++ b/Objects/obj.cxx
@@ -99,7 +99,7 @@ static Point3D calc_tex_coords(double *node, const Point3D& ref) {
 
     pp = fgCartToPolar3d(cp);
 
-    cout << pp << endl;
+    // cout << pp << endl;
 
     pp.setx( fmod(RAD_TO_DEG * FG_TEX_CONSTANT * pp.x(), 1.0) );
     pp.sety( fmod(RAD_TO_DEG * FG_TEX_CONSTANT * pp.y(), 1.0) );
@@ -549,6 +549,9 @@ int fgObjLoad( const string& path, fgTILE *t) {
 
 
 // $Log$
+// Revision 1.7  1998/10/20 15:48:44  curt
+// Removed an extraneous output message.
+//
 // Revision 1.6  1998/10/18 01:17:21  curt
 // Point3D tweaks.
 //