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

Comparing ray/src/ot/getbbox.c (file contents):
Revision 2.4 by greg, Thu Apr 14 04:56:52 1994 UTC vs.
Revision 2.5 by greg, Sat Feb 22 02:07:26 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1991 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   *  getbbox.c - compute bounding box for scene files
6   *
# Line 20 | Line 17 | char  *progname;                       /* argv[0] */
17  
18   int  nowarn = 0;                        /* supress warnings? */
19  
20 < int  (*addobjnotify[])() = {NULL};      /* new object notifier functions */
20 > void  (*addobjnotify[])() = {NULL};     /* new object notifier functions */
21  
22   FVECT  bbmin, bbmax;                    /* bounding box */
23  
# Line 57 | Line 54 | char  **argv;
54          bbmax[0] = bbmax[1] = bbmax[2] = -FHUGE;
55                                                  /* read input */
56          if (i >= argc)
57 <                readobj(NULL, addobject);
57 >                readobj2(NULL, addobject);
58          else
59                  for ( ; i < argc; i++)
60                          if (!strcmp(argv[i], "-"))      /* from stdin */
61 <                                readobj(NULL, addobject);
61 >                                readobj2(NULL, addobject);
62                          else                            /* from file */
63 <                                readobj(argv[i], addobject);
63 >                                readobj2(argv[i], addobject);
64                                                  /* print bounding box */
65          if (!nohead)
66                  printf(
# Line 75 | Line 72 | char  **argv;
72   }
73  
74  
75 + void
76   quit(code)                              /* exit program */
77   int  code;
78   {
# Line 82 | Line 80 | int  code;
80   }
81  
82  
83 + void
84   cputs()                                 /* interactive error */
85   {
86          /* referenced, but not used */
87   }
88  
89  
90 + void
91   wputs(s)                                /* warning message */
92   char  *s;
93   {
# Line 96 | Line 96 | char  *s;
96   }
97  
98  
99 + void
100   eputs(s)                                /* put string to stderr */
101   register char  *s;
102   {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines