--- ray/src/rt/rview.c 1993/02/10 14:03:01 2.10 +++ ray/src/rt/rview.c 1993/08/25 13:44:17 2.11 @@ -58,6 +58,8 @@ char *devname = dev_default; /* output device name * struct driver *dev = NULL; /* driver functions */ +char rifname[128]; /* rad input file name */ + VIEW oldview; /* previous view parameters */ PNODE ptrunk; /* the base of our image */ @@ -207,6 +209,16 @@ again: if (badcom("last")) goto commerr; lastview(args); + break; + case 'V': /* save view */ + if (badcom("V")) + goto commerr; + saveview(args); + break; + case 'L': /* load view */ + if (badcom("L")) + goto commerr; + loadview(args); break; case 'e': /* exposure */ if (badcom("exposure"))