Changeset 2551 in Sophya for trunk/SophyaExt/XephemAstroLib/rings.c
- Timestamp:
- Jun 15, 2004, 6:54:12 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/XephemAstroLib/rings.c
r1719 r2551 1 1 #include <stdio.h> 2 2 #include <math.h> 3 #if defined(__STDC__)4 3 #include <stdlib.h> 5 #endif6 4 7 #include "P_.h"8 5 #include "astro.h" 9 #include "circum.h"10 6 11 7 /* RINGS OF SATURN by Olson, et al, BASIC Code from Sky & Telescope, May 1995. … … 14 10 */ 15 11 void 16 satrings ( sb, sl, sr, el, er, JD, etiltp, stiltp)17 double sb, sl, sr;/* Saturn hlat, hlong, sun dist */18 double el, er;/* Earth hlong, sun dist */19 double JD ;/* Julian date */20 double *etiltp, *stiltp; /* tilt from earth and sun, rads southward*/12 satrings ( 13 double sb, double sl, double sr, /* Saturn hlat, hlong, sun dist */ 14 double el, double er, /* Earth hlong, sun dist */ 15 double JD, /* Julian date */ 16 double *etiltp, double *stiltp) /* tilt from earth and sun, rads south*/ 21 17 { 22 18 double t, i, om; … … 45 41 *stiltp = bp; 46 42 } 43 44 /* For RCS Only -- Do Not Edit */ 45 static char *rcsid[2] = {(char *)rcsid, "@(#) $RCSfile: rings.c,v $ $Date: 2004-06-15 16:52:40 $ $Revision: 1.2 $ $Name: not supported by cvs2svn $"};
Note:
See TracChangeset
for help on using the changeset viewer.