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

Comparing ray/src/cv/bsdfrep.h (file contents):
Revision 2.1 by greg, Fri Oct 19 04:14:29 2012 UTC vs.
Revision 2.2 by greg, Sat Oct 20 07:02:00 2012 UTC

# Line 77 | Line 77 | extern MIGRATION       *mig_grid[GRIDRES][GRIDRES];
77  
78   #define mtx_nrows(m)    ((m)->rbfv[0]->nrbf)
79   #define mtx_ncols(m)    ((m)->rbfv[1]->nrbf)
80 < #define mtx_ndx(m,i,j)  ((i)*mtx_ncols(m) + (j))
80 > #define mtx_coef(m,i,j) (m)->mtx[(i)*mtx_ncols(m) + (j)]
81   #define is_src(rbf,m)   ((rbf) == (m)->rbfv[0])
82   #define is_dest(rbf,m)  ((rbf) == (m)->rbfv[1])
83   #define nextedge(rbf,m) (m)->enxt[is_dest(rbf,m)]
# Line 85 | Line 85 | extern MIGRATION       *mig_grid[GRIDRES][GRIDRES];
85  
86   #define round(v)        (int)((v) + .5 - ((v) < -.5))
87  
88 < #define BSDFREP_FMT     "binary_RBF_BSDF_mesh"
88 > #define BSDFREP_FMT     "BSDF_RBFmesh"
89  
90                                  /* global argv[0] */
91   extern char             *progname;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines