Changeset 3111 in Sophya for trunk/SophyaExt/XephemAstroLib/sphcart.c
- Timestamp:
- Nov 22, 2006, 2:53:31 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/XephemAstroLib/sphcart.c
r2818 r3111 25 25 double rho = x*x + y*y; 26 26 27 if (rho > 1e-35) { /* standard case: off axis */27 if (rho > 0) { /* standard case: off axis */ 28 28 *l = atan2(y, x); 29 29 range (l, 2*PI); … … 41 41 42 42 /* For RCS Only -- Do Not Edit */ 43 static char *rcsid[2] = {(char *)rcsid, "@(#) $RCSfile: sphcart.c,v $ $Date: 200 5-08-21 10:02:39 $ $Revision: 1.5$ $Name: not supported by cvs2svn $"};43 static char *rcsid[2] = {(char *)rcsid, "@(#) $RCSfile: sphcart.c,v $ $Date: 2006-11-22 13:53:31 $ $Revision: 1.6 $ $Name: not supported by cvs2svn $"};
Note:
See TracChangeset
for help on using the changeset viewer.