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

Comparing ray/src/util/xglaresrc.c (file contents):
Revision 1.9 by greg, Wed Jul 31 15:28:03 1991 UTC vs.
Revision 2.3 by greg, Thu Mar 19 09:38:14 1992 UTC

# Line 12 | Line 12 | static char SCCSid[] = "$SunId$ LBL";
12  
13   #include "standard.h"
14   #include "view.h"
15 + #include "resolu.h"
16 + #include "vfork.h"
17   #include <signal.h>
18   #include <X11/Xlib.h>
19   #include <X11/Xutil.h>
20  
19 #ifndef BSD
20 #define vfork   fork
21 #endif
22
21   #define XIM             "ximage"
22  
23   #define NSEG            30              /* number of segments per circle */
# Line 29 | Line 27 | static char SCCSid[] = "$SunId$ LBL";
27   float   col[3] = {1.,0.,0.};            /* color */
28  
29   VIEW    ourview = STDVIEW;              /* view for picture */
30 < int     xres, yres;                     /* picture resolution */
30 > RESOLU  pres;                           /* picture resolution */
31  
32   char    *progname;                      /* program name */
33  
# Line 46 | Line 44 | main(argc, argv)
44   int     argc;
45   char    *argv[];
46   {
49        extern double   atof();
47          char    *windowname = NULL;
48          FILE    *fp;
49  
# Line 92 | Line 89 | char   *pname, *wname;
89          XColor  xc;
90          XGCValues       gcv;
91                                          /* get the viewing parameters */
92 <        if (viewfile(pname, &ourview, &xres, &yres) <= 0 ||
92 >        if (viewfile(pname, &ourview, &pres) <= 0 ||
93                          setview(&ourview) != NULL) {
94                  fprintf(stderr, "%s: cannot get view from \"%s\"\n",
95                                  progname, pname);
# Line 133 | Line 130 | char   *pname, *wname;
130                  XGetWindowAttributes(theDisplay, gwind, &wa);
131                  sleep(6);
132          } while (wa.map_state != IsViewable);
133 <        if (wa.width != xres || wa.height != yres) {
133 >        if (wa.width != scanlen(&pres) || wa.height != numscans(&pres)) {
134                  fprintf(stderr,
135                  "%s: warning -- window seems to be the wrong size!\n",
136                                  progname);
137 <                xres = wa.width;
138 <                yres = wa.height;
137 >                if (pres.or & YMAJOR) {
138 >                        pres.xr = wa.width;
139 >                        pres.yr = wa.height;
140 >                } else {
141 >                        pres.xr = wa.height;
142 >                        pres.yr = wa.width;
143 >                }
144          }
145                                          /* set graphics context */
146          gcv.font = XLoadFont(theDisplay, FONTNAME);
# Line 205 | Line 207 | double dom;
207   {
208          FVECT   start, cur;
209          XPoint  pt[NSEG+1];
210 <        double  px, py, pz;
210 >        FVECT   pp;
211 >        int     ip[2];
212          register int    i;
213  
214          fcross(cur, dir, ourview.vup);
# Line 217 | Line 220 | double dom;
220                  cur[0] += ourview.vp[0];
221                  cur[1] += ourview.vp[1];
222                  cur[2] += ourview.vp[2];
223 <                viewpixel(&px, &py, &pz, &ourview, cur);
224 <                if (pz <= 0.0)
223 >                viewloc(pp, &ourview, cur);
224 >                if (pp[2] <= 0.0)
225                          goto fail;
226 <                pt[i].x = px*xres;
227 <                pt[i].y = yres-1 - (int)(py*yres);
226 >                loc2pix(ip, &pres, pp[0], pp[1]);
227 >                pt[i].x = ip[0];
228 >                pt[i].y = ip[1];
229          }
230          XDrawLines(theDisplay, gwind, vecGC, pt, NSEG+1, CoordModeOrigin);
231          return;
# Line 236 | Line 240 | FVECT  dir;
240   double  v;
241   {
242          FVECT   pos;
243 <        double  px, py, pz;
243 >        FVECT   pp;
244 >        int     ip[2];
245          char    buf[32];
246  
247          pos[0] = ourview.vp[0] + dir[0];
248          pos[1] = ourview.vp[1] + dir[1];
249          pos[2] = ourview.vp[2] + dir[2];
250 <        viewpixel(&px, &py, &pz, &ourview, pos);
251 <        if (pz <= 0.0)
250 >        viewloc(pp, &ourview, pos);
251 >        if (pp[2] <= 0.0)
252                  return;
253 +        loc2pix(ip, &pres, pp[0], pp[1]);
254          sprintf(buf, "%.0f", v);
255          XDrawImageString(theDisplay, gwind, strGC,
256 <                        (int)(px*xres), yres-1-(int)(py*yres),
251 <                        buf, strlen(buf));
256 >                        ip[0], ip[1], buf, strlen(buf));
257   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines