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

Comparing ray/src/rt/rv2.c (file contents):
Revision 2.24 by greg, Mon Feb 28 09:24:43 1994 UTC vs.
Revision 2.27 by greg, Wed Dec 21 09:52:03 1994 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1993 Regents of the University of California */
1 > /* Copyright (c) 1994 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 140 | Line 140 | char  *s;
140          else {
141                  nv.horiz = ourview.horiz; nv.vert = ourview.vert;
142          }
143 +        sprintf(buf, "fore and aft clipping plane (%.6g %.6g): ",
144 +                        ourview.vfore, ourview.vaft);
145 +        (*dev->comout)(buf);
146 +        (*dev->comin)(buf, NULL);
147 +        if (buf[0] == CTRL('C')) return;
148 +        if (sscanf(buf, "%lf %lf", &nv.vfore, &nv.vaft) == 2)
149 +                change++;
150 +        else {
151 +                nv.vfore = ourview.vfore; nv.vaft = ourview.vaft;
152 +        }
153          sprintf(buf, "view shift and lift (%.6g %.6g): ",
154                          ourview.hoff, ourview.voff);
155          (*dev->comout)(buf);
# Line 350 | Line 360 | char  *s;
360          register PNODE  *p = &ptrunk;
361          int  adapt = 0;
362          double  e = 1.0;
363 < start:
363 >
364          for (cp = s; isspace(*cp); cp++)
365                  ;
366          if (*cp == '@') {
367                  adapt++;
368 <                goto start;
368 >                while (isspace(*++cp))
369 >                        ;
370          }
371          if (*cp == '\0') {              /* normalize to point */
372                  if (dev->getcur == NULL)
# Line 489 | Line 500 | register char  *s;
500          extern int  do_irrad;
501          extern double  specjitter;
502          extern double  specthresh;
503 +        extern int  backvis;
504          char  buf[128];
505          
506          if (s[0] == '\0') {
507                  (*dev->comout)(
508 <                "aa ab ad ar as av b dc di dj ds dt i lr lw ps pt sj st: ");
508 >                "aa ab ad ar as av b dc di dj ds dt i lr lw ps pt sj st bv: ");
509                  (*dev->comin)(buf, NULL);
510                  s = buf;
511          }
# Line 532 | Line 544 | register char  *s;
544                          goto badparam;
545                  }
546                  break;
547 <        case 'b':                       /* black and white */
548 <                getparam(s+1, "black and white", 'b', &greyscale);
547 >        case 'b':                       /* back faces or black and white */
548 >                switch (s[1]) {
549 >                case 'v':                       /* back face visibility */
550 >                        getparam(s+2, "back face visibility", 'b', &backvis);
551 >                        break;
552 >                case '\0':                      /* black and white */
553 >                case 'y': case 'Y': case 't': case 'T': case '1': case '+':
554 >                case 'n': case 'N': case 'f': case 'F': case '0': case '-':
555 >                        getparam(s+1, "black and white", 'b', &greyscale);
556 >                        break;
557 >                default:
558 >                        goto badparam;
559 >                }
560                  break;
561          case 'i':                       /* irradiance */
562                  getparam(s+1, "irradiance", 'b', &do_irrad);
# Line 609 | Line 632 | char  *s;
632          int  x, y;
633          RAY  thisray;
634  
635 +        thisray.rmax = 0.0;
636 +
637          if (!sscanvec(s, thisray.rorg) ||
638                          !sscanvec(sskip(sskip(sskip(s))), thisray.rdir)) {
639  
# Line 618 | Line 643 | char  *s;
643                  if ((*dev->getcur)(&x, &y) == ABORT)
644                          return;
645  
646 <                if (viewray(thisray.rorg, thisray.rdir, &ourview,
647 <                                (x+.5)/hresolu, (y+.5)/vresolu) < 0) {
646 >                if ((thisray.rmax = viewray(thisray.rorg, thisray.rdir,
647 >                        &ourview, (x+.5)/hresolu, (y+.5)/vresolu)) < -FTINY) {
648                          error(COMMAND, "not on image");
649                          return;
650                  }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines