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

Comparing ray/src/hd/genrhgrid.c (file contents):
Revision 3.4 by greg, Fri Jun 20 00:25:49 2003 UTC vs.
Revision 3.7 by greg, Wed Oct 22 02:06:34 2003 UTC

# Line 5 | Line 5 | static const char      RCSid[] = "$Id$";
5   * Generate renderable grids from a holodeck file
6   */
7  
8 + #include "platform.h"
9   #include "holo.h"
10  
11   char    *progname;              /* global argv[0] */
# Line 20 | Line 21 | char   *argv[];
21          int     sect;
22  
23          progname = argv[0];
24 <        if (argc < 5 | argc > 6)
24 >        if ((argc < 5) | (argc > 6))
25                  goto userr;
26          mat = argv[1];
27          name = argv[2];
# Line 60 | Line 61 | int    sect;
61          nextloc = ftell(fp);                    /* get stdio position */
62          fclose(fp);                             /* done with stdio */
63          for (n = 0; nextloc > 0L; n++) {        /* get the section(s) */
64 <                lseek(fd, (off_t)nextloc, 0);
64 >                lseek(fd, (off_t)nextloc, SEEK_SET);
65                  read(fd, (char *)&nextloc, sizeof(nextloc));
66 <                if (sect < 0 | n == sect) {
66 >                if ((sect < 0) | (n == sect)) {
67                          read(fd, (char *)&hdsect, sizeof(HDGRID));
68                          hdcompgrid(&hdsect);
69                          putgrid(&hdsect);       /* print grid */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines