--- ray/src/common/view.h 1991/11/12 16:55:36 2.1 +++ ray/src/common/view.h 2003/10/27 10:19:31 2.15 @@ -1,18 +1,28 @@ -/* Copyright (c) 1988 Regents of the University of California */ - -/* SCCSid "$SunId$ LBL" */ - +/* RCSid $Id: view.h,v 2.15 2003/10/27 10:19:31 schorsch Exp $ */ /* * view.h - header file for image generation. * - * 9/19/88 + * Include after stdio.h and fvect.h + * Includes resolu.h */ +#ifndef _RAD_VIEW_H_ +#define _RAD_VIEW_H_ +#include + +#include "rtmath.h" +#include "resolu.h" + +#ifdef __cplusplus +extern "C" { +#endif + /* view types */ #define VT_PER 'v' /* perspective */ #define VT_PAR 'l' /* parallel */ #define VT_ANG 'a' /* angular fisheye */ #define VT_HEM 'h' /* hemispherical fisheye */ +#define VT_CYL 'c' /* cylindrical panorama */ typedef struct { int type; /* view type */ @@ -23,6 +33,8 @@ typedef struct { double vert; /* vertical view size */ double hoff; /* horizontal image offset */ double voff; /* vertical image offset */ + double vfore; /* fore clipping plane */ + double vaft; /* aft clipping plane (<=0 for inf) */ FVECT hvec; /* computed horizontal image vector */ FVECT vvec; /* computed vertical image vector */ double hn2; /* DOT(hvec,hvec) */ @@ -31,13 +43,32 @@ typedef struct { extern VIEW stdview; -extern char *setview(); - -extern double sqrt(); - #define viewaspect(v) sqrt((v)->vn2/(v)->hn2) -#define STDVIEW {VT_PER,0.,0.,0.,0.,1.,0.,0.,0.,1.,45.,45.,0.,0.} +#define STDVIEW {VT_PER,{0.,0.,0.},{0.,1.,0.},{0.,0.,1.}, \ + 45.,45.,0.,0.,0.,0., \ + {0.,0.,0.},{0.,0.,0.},0.,0.} #define VIEWSTR "VIEW=" #define VIEWSTRL 5 + + +extern char *setview(VIEW *v); +extern void normaspect(double va, double *ap, int *xp, int *yp); +extern double viewray(FVECT orig, FVECT direc, VIEW *v, double x, double y); +extern void viewloc(FVECT ip, VIEW *v, FVECT p); +extern void pix2loc(RREAL loc[2], RESOLU *rp, int px, int py); +extern void loc2pix(int pp[2], RESOLU *rp, double lx, double ly); +extern int getviewopt(VIEW *v, int ac, char *av[]); +extern int sscanview(VIEW *vp, char *s); +extern void fprintview(VIEW *vp, FILE *fp); +extern char *viewopt(VIEW *vp); +extern int isview(char *s); +extern int viewfile(char *fname, VIEW *vp, RESOLU *rp); + + +#ifdef __cplusplus +} +#endif +#endif /* _RAD_VIEW_H_ */ +