ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/gen/gensky.c
(Generate patch)

Comparing ray/src/gen/gensky.c (file contents):
Revision 2.17 by greg, Tue Jul 16 14:14:50 1996 UTC vs.
Revision 2.20 by greg, Sat Feb 22 02:07:23 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1992 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   *  gensky.c - program to generate sky functions.
6   *              Our zenith is along the Z-axis, the X-axis
# Line 15 | Line 12 | static char SCCSid[] = "$SunId$ LBL";
12  
13   #include  <stdio.h>
14  
15 + #include  <stdlib.h>
16 +
17 + #include  <string.h>
18 +
19   #include  <math.h>
20  
21   #include  <ctype.h>
22  
23   #include  "color.h"
24  
24 extern char  *strcpy(), *strcat(), *malloc();
25   extern double  stadj(), sdec(), sazi(), salt(), tz2mer();
26  
27   #ifndef  PI
# Line 59 | Line 59 | struct {
59          "AST", 60, "ADT", 45,
60          "NST", 52.5, "NDT", 37.5,
61          "GMT", 0, "BST", -15,
62 <        "WET", -15, "WETDST", -30,
63 <        "MET", -30, "METDST", -45,
64 <        "MEZ", -30, "MESZ", -45,
62 >        "CET", -15, "CEST", -30,
63 >        "EET", -30, "EEST", -45,
64 >        "AST", -45, "ADT", -60,
65 >        "GST", -60, "GDT", -75,
66 >        "IST", -82.5, "IDT", -97.5,
67 >        "JST", -135, "NDT", -150,
68 >        "NZST", -180, "NZDT", -195,
69          "", 0
70   };
71                                          /* required values */
# Line 162 | Line 166 | char  *argv[];
166                  else
167                          userror("bad option");
168  
169 <        if (fabs(s_meridian-s_longitude) > 30*PI/180)
169 >        if (fabs(s_meridian-s_longitude) > 45*PI/180)
170                  fprintf(stderr,
171          "%s: warning: %.1f hours btwn. standard meridian and longitude\n",
172                          progname, (s_longitude-s_meridian)*12/PI);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines