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

Comparing ray/src/common/image.c (file contents):
Revision 1.16 by greg, Thu Nov 7 11:04:00 1991 UTC vs.
Revision 2.5 by greg, Tue Sep 8 10:04:30 1992 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1986 Regents of the University of California */
1 > /* Copyright (c) 1992 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 14 | Line 14 | static char SCCSid[] = "$SunId$ LBL";
14  
15   #include  "view.h"
16  
17 + #include  "resolu.h"
18 +
19 + #include  "paths.h"
20 +
21   VIEW  stdview = STDVIEW;                /* default view parameters */
22  
23  
# Line 162 | Line 166 | double  x, y;
166   }
167  
168  
169 < viewpixel(xp, yp, zp, v, p)             /* find image location for point */
170 < double  *xp, *yp, *zp;
169 > viewloc(ip, v, p)               /* find image location for point */
170 > FVECT  ip;
171   register VIEW  *v;
172   FVECT  p;
173   {
# Line 176 | Line 180 | FVECT  p;
180  
181          switch (v->type) {
182          case VT_PAR:                    /* parallel view */
183 <                if (zp != NULL)
180 <                        *zp = DOT(disp,v->vdir);
183 >                ip[2] = DOT(disp,v->vdir);
184                  break;
185          case VT_PER:                    /* perspective view */
186                  d = DOT(disp,v->vdir);
187 <                if (zp != NULL) {
188 <                        *zp = sqrt(DOT(disp,disp));
189 <                        if (d < 0.0)
187 <                                *zp = -*zp;
188 <                }
189 <                if (d < 0.0)            /* fold pyramid */
187 >                ip[2] = sqrt(DOT(disp,disp));
188 >                if (d < 0.0) {          /* fold pyramid */
189 >                        ip[2] = -ip[2];
190                          d = -d;
191 <                if (d > FTINY) {
191 >                } else if (d > FTINY) {
192                          d = 1.0/d;
193                          disp[0] *= d;
194                          disp[1] *= d;
# Line 197 | Line 197 | FVECT  p;
197                  break;
198          case VT_HEM:                    /* hemispherical fisheye */
199                  d = normalize(disp);
200 <                if (zp != NULL) {
201 <                        if (DOT(disp,v->vdir) < 0.0)
202 <                                *zp = -d;
203 <                        else
204 <                                *zp = d;
205 <                }
200 >                if (DOT(disp,v->vdir) < 0.0)
201 >                        ip[2] = -d;
202 >                else
203 >                        ip[2] = d;
204                  break;
205          case VT_ANG:                    /* angular fisheye */
206 <                d = normalize(disp);
207 <                if (zp != NULL)
208 <                        *zp = d;
211 <                *xp = 0.5 - v->hoff;
212 <                *yp = 0.5 - v->voff;
206 >                ip[0] = 0.5 - v->hoff;
207 >                ip[1] = 0.5 - v->voff;
208 >                ip[2] = normalize(disp);
209                  d = DOT(disp,v->vdir);
210                  if (d >= 1.0-FTINY)
211                          return;
212                  if (d <= -(1.0-FTINY)) {
213 <                        *xp += 180.0/v->horiz;
214 <                        *yp += 180.0/v->vert;
213 >                        ip[1] += 180.0/v->horiz;
214 >                        ip[2] += 180.0/v->vert;
215                          return;
216                  }
217                  d = acos(d)/PI / sqrt(1.0 - d*d);
218 <                *xp += DOT(disp,v->hvec)*d*180.0/v->horiz;
219 <                *yp += DOT(disp,v->vvec)*d*180.0/v->vert;
218 >                ip[0] += DOT(disp,v->hvec)*d*180.0/v->horiz;
219 >                ip[1] += DOT(disp,v->vvec)*d*180.0/v->vert;
220                  return;
221          }
222 <        *xp = DOT(disp,v->hvec)/v->hn2 + 0.5 - v->hoff;
223 <        *yp = DOT(disp,v->vvec)/v->vn2 + 0.5 - v->voff;
222 >        ip[0] = DOT(disp,v->hvec)/v->hn2 + 0.5 - v->hoff;
223 >        ip[1] = DOT(disp,v->vvec)/v->vn2 + 0.5 - v->voff;
224   }
225  
226  
227 + pix2loc(loc, rp, px, py)        /* compute image location from pixel pos. */
228 + FLOAT  loc[2];
229 + register RESOLU  *rp;
230 + int  px, py;
231 + {
232 +        register int  x, y;
233 +
234 +        if (rp->or & YMAJOR) {
235 +                x = px;
236 +                y = py;
237 +        } else {
238 +                x = py;
239 +                y = px;
240 +        }
241 +        if (rp->or & XDECR)
242 +                x = rp->xr-1 - x;
243 +        if (rp->or & YDECR)
244 +                y = rp->yr-1 - y;
245 +        loc[0] = (x+.5)/rp->xr;
246 +        loc[1] = (y+.5)/rp->yr;
247 + }
248 +
249 +
250 + loc2pix(pp, rp, lx, ly)         /* compute pixel pos. from image location */
251 + int  pp[2];
252 + register RESOLU  *rp;
253 + double  lx, ly;
254 + {
255 +        register int  x, y;
256 +
257 +        x = lx * rp->xr;
258 +        y = ly * rp->yr;
259 +        if (rp->or & XDECR)
260 +                x = rp->xr-1 - x;
261 +        if (rp->or & YDECR)
262 +                y = rp->yr-1 - y;
263 +        if (rp->or & YMAJOR) {
264 +                pp[0] = x;
265 +                pp[1] = y;
266 +        } else {
267 +                pp[0] = y;
268 +                pp[1] = x;
269 +        }
270 + }
271 +
272 +
273   int
274   getviewopt(v, ac, av)                   /* process view argument */
275   register VIEW  *v;
# Line 236 | Line 278 | register char  *av[];
278   {
279   #define check(c,l)      if ((av[0][c]&&av[0][c]!=' ') || \
280                          badarg(ac-1,av+1,l)) return(-1)
239        extern double  atof();
281  
282          if (ac <= 0 || av[0][0] != '-' || av[0][1] != 'v')
283                  return(-1);
# Line 298 | Line 339 | register char  *s;
339          int  na;
340          int  nvopts = 0;
341  
342 <        while (*s == ' ')
343 <                s++;
342 >        if (*s != '-')
343 >                s = sskip(s);
344          while (*s) {
345                  ac = 0;
346                  do {
# Line 333 | Line 374 | FILE  *fp;
374   }
375  
376  
377 < static char  *altname[] = {NULL,"rpict","rview","pinterp",VIEWSTR,NULL};
377 > int
378 > isview(s)                               /* is this a view string? */
379 > char  *s;
380 > {
381 >        static char  *altname[]={NULL,VIEWSTR,"rpict","rview","pinterp",NULL};
382 >        extern char  *progname;
383 >        register char  *cp;
384 >        register char  **an;
385 >                                        /* add program name to list */
386 >        if (altname[0] == NULL) {
387 >                for (cp = progname; *cp; cp++)
388 >                        ;
389 >                while (cp > progname && !ISDIRSEP(cp[-1]))
390 >                        cp--;
391 >                altname[0] = cp;
392 >        }
393 >                                        /* skip leading path */
394 >        cp = s;
395 >        while (*cp && *cp != ' ')
396 >                cp++;
397 >        while (cp > s && !ISDIRSEP(cp[-1]))
398 >                cp--;
399 >        for (an = altname; *an != NULL; an++)
400 >                if (!strncmp(*an, cp, strlen(*an)))
401 >                        return(1);
402 >        return(0);
403 > }
404  
405 +
406   struct myview {
407          VIEW    *hv;
408          int     ok;
# Line 346 | Line 414 | gethview(s, v)                         /* get view from header */
414   char  *s;
415   register struct myview  *v;
416   {
417 <        register char  **an;
418 <
351 <        for (an = altname; *an != NULL; an++)
352 <                if (!strncmp(*an, s, strlen(*an))) {
353 <                        if (sscanview(v->hv, s+strlen(*an)) > 0)
354 <                                v->ok++;
355 <                        return;
356 <                }
417 >        if (isview(s) && sscanview(v->hv, s) > 0)
418 >                v->ok++;
419   }
420  
421  
422   int
423 < viewfile(fname, vp, xp, yp)             /* get view from file */
423 > viewfile(fname, vp, rp)                 /* get view from file */
424   char  *fname;
425   VIEW  *vp;
426 < int  *xp, *yp;
426 > RESOLU  *rp;
427   {
366        extern char  *progname;
428          struct myview   mvs;
429          FILE  *fp;
430  
431          if ((fp = fopen(fname, "r")) == NULL)
432                  return(-1);
433  
373        altname[0] = progname;
434          mvs.hv = vp;
435          mvs.ok = 0;
436  
437          getheader(fp, gethview, &mvs);
438  
439 <        if (xp != NULL && yp != NULL
380 <                        && fgetresolu(xp, yp, fp) == -1)
439 >        if (rp != NULL && !fgetsresolu(rp, fp))
440                  mvs.ok = 0;
441  
442          fclose(fp);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines