ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/view.h
(Generate patch)

Comparing ray/src/common/view.h (file contents):
Revision 2.18 by greg, Tue Mar 11 02:21:46 2008 UTC vs.
Revision 2.20 by greg, Fri Apr 27 05:00:29 2018 UTC

# Line 51 | Line 51 | extern VIEW  stdview;
51   #define  VIEWSTR        "VIEW="
52   #define  VIEWSTRL       5
53  
54 +                                /* return values/flags for viewloc() */
55 + #define VL_BAD          0               /* illegal position (i.e. origin) */
56 + #define VL_GOOD         0x1             /* result is valid */
57 + #define VL_BEHIND       0x2             /* world point is behind fore plane */
58 + #define VL_OUTSIDE      0x4             /* world point is outside frustum */
59 + #define VL_BEYOND       0x8             /* point is beyond aft clipping plane */
60  
61   extern char     *setview(VIEW *v);
62   extern void     normaspect(double va, double *ap, int *xp, int *yp);
63   extern double   viewray(FVECT orig, FVECT direc, VIEW *v, double x, double y);
64 < extern void     viewloc(FVECT ip, VIEW *v, FVECT p);
64 > extern int      viewloc(FVECT ip, VIEW *v, FVECT p);
65   extern void     pix2loc(RREAL loc[2], RESOLU *rp, int px, int py);
66   extern void     loc2pix(int pp[2], RESOLU *rp, double lx, double ly);
67   extern int      getviewopt(VIEW *v, int ac, char *av[]);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines