--- ray/src/rt/rv2.c 1994/12/22 11:46:14 2.28 +++ ray/src/rt/rv2.c 1995/05/04 15:50:26 2.31 @@ -507,7 +507,7 @@ register char *s; if (s[0] == '\0') { (*dev->comout)( - "aa ab ad ar as av b dc di dj ds dt i lr lw ps pt sj st bv: "); + "aa ab ad ar as av b dc dv dj ds dt i lr lw ps pt sj st bv: "); (*dev->comin)(buf, NULL); s = buf; } @@ -552,6 +552,7 @@ register char *s; getparam(s+2, "back face visibility", 'b', &backvis); break; case '\0': /* black and white */ + case ' ': case 'y': case 'Y': case 't': case 'T': case '1': case '+': case 'n': case 'N': case 'f': case 'F': case '0': case '-': getparam(s+1, "black and white", 'b', &greyscale); @@ -674,8 +675,9 @@ char *s; if (thisray.rot >= FHUGE) (*dev->comout)("at infinity"); else { - sprintf(buf, "at (%.6g %.6g %.6g)", thisray.rop[0], - thisray.rop[1], thisray.rop[2]); + sprintf(buf, "at (%.6g %.6g %.6g) (%.6g)", + thisray.rop[0], thisray.rop[1], + thisray.rop[2], thisray.rt); (*dev->comout)(buf); } (*dev->comin)(buf, NULL);