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

Comparing ray/src/ot/obj2mesh.c (file contents):
Revision 2.16 by greg, Wed Jul 28 22:16:43 2021 UTC vs.
Revision 2.18 by greg, Tue Jun 3 21:31:51 2025 UTC

# Line 19 | Line 19 | int    o_default() { return(O_MISS); }
19  
20   FUN  ofun[NUMOTYPE] = INIT_OTYPE;       /* needed for link resolution */
21  
22 char  *progname;                        /* argv[0] */
23
22   int  nowarn = 0;                        /* supress warnings? */
23  
24   int  objlim = 9;                        /* # of objects before split */
# Line 43 | Line 41 | main(          /* compile a .OBJ file into a mesh */
41          char  *cp;
42          int  i, j;
43  
44 <        progname = argv[0];
44 >        fixargv0(argv[0]);              /* sets global progname */
45 >
46          ofun[OBJ_FACE].funp = o_face;
47  
48          for (i = 1; i < argc && argv[i][0] == '-'; i++)
# Line 142 | Line 141 | cputs(void)                                    /* interactive error */
141  
142   void
143   wputs(                          /* warning message */
144 <        char  *s
144 >        const char  *s
145   )
146   {
147          if (!nowarn)
# Line 152 | Line 151 | wputs(                         /* warning message */
151  
152   void
153   eputs(                          /* put string to stderr */
154 <        register char  *s
154 >        const char  *s
155   )
156   {
157          static int  inln = 0;
# Line 169 | Line 168 | eputs(                         /* put string to stderr */
168  
169   static void
170   addface(                        /* add a face to a cube */
171 <        register CUBE  *cu,
171 >        CUBE  *cu,
172          OBJECT  obj
173   )
174   {
# Line 206 | Line 205 | addface(                       /* add a face to a cube */
205  
206   static void
207   add2full(                       /* add object to full node */
208 <        register CUBE  *cu,
208 >        CUBE  *cu,
209          OBJECT  obj
210   )
211   {
212          OCTREE  ot;
213          OBJECT  oset[MAXSET+1];
214          CUBE  cukid;
215 <        register int  i, j;
215 >        int  i, j;
216  
217          objset(oset, cu->cutree);
218          cukid.cusize = cu->cusize * 0.5;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines