From: curt Date: Sun, 3 May 1998 00:45:49 +0000 (+0000) Subject: Commented out a debugging printf. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2df317eb49e85903173a4c345f6ba45823170ba6;p=flightgear.git Commented out a debugging printf. --- diff --git a/Math/polar3d.c b/Math/polar3d.c index 629cac746..53d8966bd 100644 --- a/Math/polar3d.c +++ b/Math/polar3d.c @@ -55,16 +55,19 @@ fgPolarPoint3d fgCartToPolar3d(fgCartesianPoint3d cp) { pp.lat = FG_PI_2 - atan2( sqrt(cp.x*cp.x + cp.y*cp.y), cp.z ); pp.radius = sqrt(cp.x*cp.x + cp.y*cp.y + cp.z*cp.z); - printf("lon = %.l2f lat = %.l2f radius = %.l2f\n", - pp.lon, pp.lat, pp.radius); + /* printf("lon = %.2f lat = %.2f radius = %.2f\n", + pp.lon, pp.lat, pp.radius); */ return(pp); } /* $Log$ -/* Revision 1.1 1998/05/02 01:50:11 curt -/* polar.[ch] renamed to polar3d.[ch] +/* Revision 1.2 1998/05/03 00:45:49 curt +/* Commented out a debugging printf. /* + * Revision 1.1 1998/05/02 01:50:11 curt + * polar.[ch] renamed to polar3d.[ch] + * * Revision 1.6 1998/04/25 22:06:23 curt * Edited cvs log messages in source files ... bad bad bad! *