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 2.8 by greg, Wed Dec 21 09:07:19 1994 UTC vs.
Revision 2.15 by gwlarson, Fri Feb 26 12:24:07 1999 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1994 Regents of the University of California */
1 > /* Copyright (c) 1996 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 6 | Line 6 | static char SCCSid[] = "$SunId$ LBL";
6  
7   /*
8   *  image.c - routines for image generation.
9 *
10 *     10/17/85
9   */
10  
11   #include  "standard.h"
# Line 18 | Line 16 | static char SCCSid[] = "$SunId$ LBL";
16  
17   #include  "paths.h"
18  
19 + #define  FEQ(x,y)       (fabs((x)-(y)) <= FTINY)
20 + #define  VEQ(v,w)       (FEQ((v)[0],(w)[0]) && FEQ((v)[1],(w)[1]) \
21 +                                && FEQ((v)[2],(w)[2]))
22 +
23   VIEW  stdview = STDVIEW;                /* default view parameters */
24  
25  
# Line 28 | Line 30 | register VIEW  *v;
30          static char  ill_horiz[] = "illegal horizontal view size";
31          static char  ill_vert[] = "illegal vertical view size";
32          
33 <        if (v->vfore < -FTINY || v->vaft < -FTINY ||
32 <                        (v->vaft > FTINY && v->vaft <= v->vfore))
33 >        if (v->vaft < -FTINY || (v->vaft > FTINY && v->vaft <= v->vfore))
34                  return("illegal fore/aft clipping plane");
35  
36          if (normalize(v->vdir) == 0.0)          /* normalize direction */
# Line 63 | Line 64 | register VIEW  *v;
64                  v->hn2 = 2.0 * tan(v->horiz*(PI/180.0/2.0));
65                  v->vn2 = 2.0 * tan(v->vert*(PI/180.0/2.0));
66                  break;
67 +        case VT_CYL:                            /* cylindrical panorama */
68 +                if (v->horiz > 360.0+FTINY)
69 +                        return(ill_horiz);
70 +                if (v->vert >= 180.0-FTINY)
71 +                        return(ill_vert);
72 +                v->hn2 = v->horiz * (PI/180.0);
73 +                v->vn2 = 2.0 * tan(v->vert*(PI/180.0/2.0));
74 +                break;
75          case VT_ANG:                            /* angular fisheye */
76                  if (v->horiz > 360.0+FTINY)
77                          return(ill_horiz);
78                  if (v->vert > 360.0+FTINY)
79                          return(ill_vert);
80 <                v->hn2 = v->horiz / 90.0;
81 <                v->vn2 = v->vert / 90.0;
80 >                v->hn2 = v->horiz * (PI/180.0);
81 >                v->vn2 = v->vert * (PI/180.0);
82                  break;
83          case VT_HEM:                            /* hemispherical fisheye */
84                  if (v->horiz > 180.0+FTINY)
# Line 83 | Line 92 | register VIEW  *v;
92                  return("unknown view type");
93          }
94          if (v->type != VT_ANG) {
95 <                v->hvec[0] *= v->hn2;
96 <                v->hvec[1] *= v->hn2;
97 <                v->hvec[2] *= v->hn2;
95 >                if (v->type != VT_CYL) {
96 >                        v->hvec[0] *= v->hn2;
97 >                        v->hvec[1] *= v->hn2;
98 >                        v->hvec[2] *= v->hn2;
99 >                }
100                  v->vvec[0] *= v->vn2;
101                  v->vvec[1] *= v->vn2;
102                  v->vvec[2] *= v->vn2;
# Line 153 | Line 164 | double  x, y;
164                  orig[1] = v->vp[1] + v->vfore*direc[1];
165                  orig[2] = v->vp[2] + v->vfore*direc[2];
166                  return(v->vaft > FTINY ? v->vaft - v->vfore : 0.0);
167 +        case VT_CYL:                    /* cylindrical panorama */
168 +                d = x * v->horiz * (PI/180.0);
169 +                z = cos(d);
170 +                x = sin(d);
171 +                direc[0] = z*v->vdir[0] + x*v->hvec[0] + y*v->vvec[0];
172 +                direc[1] = z*v->vdir[1] + x*v->hvec[1] + y*v->vvec[1];
173 +                direc[2] = z*v->vdir[2] + x*v->hvec[2] + y*v->vvec[2];
174 +                orig[0] = v->vp[0] + v->vfore*direc[0];
175 +                orig[1] = v->vp[1] + v->vfore*direc[1];
176 +                orig[2] = v->vp[2] + v->vfore*direc[2];
177 +                d = normalize(direc);
178 +                return(v->vaft > FTINY ? (v->vaft - v->vfore)*d : 0.0);
179          case VT_ANG:                    /* angular fisheye */
180                  x *= v->horiz/180.0;
181                  y *= v->vert/180.0;
# Line 181 | Line 204 | FVECT  ip;
204   register VIEW  *v;
205   FVECT  p;
206   {
207 <        double  d;
207 >        double  d, d2;
208          FVECT  disp;
209  
210          disp[0] = p[0] - v->vp[0];
# Line 194 | Line 217 | FVECT  p;
217                  break;
218          case VT_PER:                    /* perspective view */
219                  d = DOT(disp,v->vdir);
220 <                ip[2] = sqrt(DOT(disp,disp));
220 >                ip[2] = VLEN(disp);
221                  if (d < 0.0) {          /* fold pyramid */
222                          ip[2] = -ip[2];
223                          d = -d;
# Line 215 | Line 238 | FVECT  p;
238                          ip[2] = d;
239                  ip[2] -= v->vfore;
240                  break;
241 +        case VT_CYL:                    /* cylindrical panorama */
242 +                d = DOT(disp,v->hvec);
243 +                d2 = DOT(disp,v->vdir);
244 +                ip[0] = 180.0/PI * atan2(d,d2) / v->horiz + 0.5 - v->hoff;
245 +                d = 1.0/sqrt(d*d + d2*d2);
246 +                ip[1] = DOT(disp,v->vvec)*d/v->vn2 + 0.5 - v->voff;
247 +                ip[2] = VLEN(disp);
248 +                ip[2] *= (1.0 - v->vfore*d);
249 +                return;
250          case VT_ANG:                    /* angular fisheye */
251                  ip[0] = 0.5 - v->hoff;
252                  ip[1] = 0.5 - v->voff;
# Line 224 | Line 256 | FVECT  p;
256                          return;
257                  if (d <= -(1.0-FTINY)) {
258                          ip[0] += 180.0/v->horiz;
227                        ip[1] += 180.0/v->vert;
259                          return;
260                  }
261                  d = acos(d)/PI / sqrt(1.0 - d*d);
# Line 361 | Line 392 | register char  *s;
392          int  nvopts = 0;
393  
394          if (*s != '-')
395 <                s = sskip(s);
395 >                s = sskip2(s,1);
396          while (*s) {
397                  ac = 0;
398                  do {
# Line 396 | Line 427 | FILE  *fp;
427   }
428  
429  
430 + char *
431 + viewopt(vp)                             /* translate to minimal view string */
432 + register VIEW  *vp;
433 + {
434 +        static char  vwstr[128];
435 +        register char  *cp = vwstr;
436 +
437 +        if (vp->type != stdview.type) {
438 +                sprintf(cp, " -vt%c", vp->type);
439 +                cp += strlen(cp);
440 +        }
441 +        if (!VEQ(vp->vp,stdview.vp)) {
442 +                sprintf(cp, " -vp %.6g %.6g %.6g",
443 +                                vp->vp[0], vp->vp[1], vp->vp[2]);
444 +                cp += strlen(cp);
445 +        }
446 +        if (!VEQ(vp->vdir,stdview.vdir)) {
447 +                sprintf(cp, " -vd %.6g %.6g %.6g",
448 +                                vp->vdir[0], vp->vdir[1], vp->vdir[2]);
449 +                cp += strlen(cp);
450 +        }
451 +        if (!VEQ(vp->vup,stdview.vup)) {
452 +                sprintf(cp, " -vu %.6g %.6g %.6g",
453 +                                vp->vup[0], vp->vup[1], vp->vup[2]);
454 +                cp += strlen(cp);
455 +        }
456 +        if (!FEQ(vp->horiz,stdview.horiz)) {
457 +                sprintf(cp, " -vh %.6g", vp->horiz);
458 +                cp += strlen(cp);
459 +        }
460 +        if (!FEQ(vp->vert,stdview.vert)) {
461 +                sprintf(cp, " -vv %.6g", vp->vert);
462 +                cp += strlen(cp);
463 +        }
464 +        if (!FEQ(vp->vfore,stdview.vfore)) {
465 +                sprintf(cp, " -vo %.6g", vp->vfore);
466 +                cp += strlen(cp);
467 +        }
468 +        if (!FEQ(vp->vaft,stdview.vaft)) {
469 +                sprintf(cp, " -va %.6g", vp->vaft);
470 +                cp += strlen(cp);
471 +        }
472 +        if (!FEQ(vp->hoff,stdview.hoff)) {
473 +                sprintf(cp, " -vs %.6g", vp->hoff);
474 +                cp += strlen(cp);
475 +        }
476 +        if (!FEQ(vp->voff,stdview.voff)) {
477 +                sprintf(cp, " -vl %.6g", vp->voff);
478 +                cp += strlen(cp);
479 +        }
480 +        return(vwstr);
481 + }
482 +
483 +
484   int
485   isview(s)                               /* is this a view string? */
486   char  *s;
# Line 431 | Line 516 | struct myview {
516   };
517  
518  
519 < static
519 > static int
520   gethview(s, v)                          /* get view from header */
521   char  *s;
522   register struct myview  *v;
523   {
524          if (isview(s) && sscanview(v->hv, s) > 0)
525                  v->ok++;
526 +        return(0);
527   }
528  
529  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines