ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/rmatrix.c
(Generate patch)

Comparing ray/src/util/rmatrix.c (file contents):
Revision 2.35 by greg, Wed Aug 14 18:20:02 2019 UTC vs.
Revision 2.42 by greg, Thu Mar 26 18:04:24 2020 UTC

# Line 5 | Line 5 | static const char RCSid[] = "$Id$";
5   * General matrix operations.
6   */
7  
8 #include <stdio.h>
8   #include <stdlib.h>
10 #include <string.h>
11 #include <fcntl.h>
9   #include <errno.h>
10   #include "rtio.h"
11   #include "platform.h"
# Line 32 | Line 29 | rmx_alloc(int nr, int nc, int n)
29                  return(NULL);
30          dnew->nrows = nr; dnew->ncols = nc; dnew->ncomp = n;
31          dnew->dtype = DTdouble;
32 +        dnew->swapin = 0;
33          dnew->info = NULL;
34          return(dnew);
35   }
# Line 102 | Line 100 | get_dminfo(char *s, void *p)
100                  ip->swapin = (nativebigendian() != i);
101                  return(0);
102          }
103 +        if (isexpos(s)) {
104 +                double  d = exposval(s);
105 +                scalecolor(ip->mtx, d);
106 +                return(0);
107 +        }
108 +        if (iscolcor(s)) {
109 +                COLOR   ctmp;
110 +                colcorval(ctmp, s);
111 +                multcolor(ip->mtx, ctmp);
112 +                return(0);
113 +        }
114          if (!formatval(fmt, s)) {
115                  rmx_addinfo(ip, s);
116                  return(0);
# Line 152 | Line 161 | rmx_load_float(RMATRIX *rm, FILE *fp)
161   static int
162   rmx_load_double(RMATRIX *rm, FILE *fp)
163   {
164 <        int     i, j;
164 >        int     i;
165  
166 <        for (i = 0; i < rm->nrows; i++)
167 <            for (j = 0; j < rm->ncols; j++) {
168 <                if (getbinary(&rmx_lval(rm,i,j,0), sizeof(double), rm->ncomp, fp) != rm->ncomp)
169 <                    return(0);
166 >        if (&rmx_lval(rm,0,0,0) - &rmx_lval(rm,1,0,0) != rm->ncols*rm->ncomp) {
167 >                fputs("Code error in rmx_load_double()\n", stderr);
168 >                exit(1);
169 >        }
170 >        for (i = 0; i < rm->nrows; i++) {
171 >                if (getbinary(&rmx_lval(rm,i,0,0), sizeof(double)*rm->ncomp,
172 >                                        rm->ncols, fp) != rm->ncols)
173 >                        return(0);
174                  if (rm->swapin)
175 <                    swap64((char *)&rmx_lval(rm,i,j,0), rm->ncomp);
176 <            }
175 >                        swap64((char *)&rmx_lval(rm,i,0,0), rm->ncols*rm->ncomp);
176 >        }
177          return(1);
178   }
179  
# Line 201 | Line 214 | rmx_load(const char *inspec)
214          } else if (inspec[0] == '!') {
215                  if (!(fp = popen(inspec+1, "r")))
216                          return(NULL);
217 <                SET_FILE_BINARY(stdin);
217 >                SET_FILE_BINARY(fp);
218          } else {
219                  const char      *sp = inspec;   /* check suffix */
220                  while (*sp)
# Line 228 | Line 241 | rmx_load(const char *inspec)
241          dinfo.dtype = DTascii;                  /* assumed w/o FORMAT */
242          dinfo.swapin = 0;
243          dinfo.info = NULL;
244 +        dinfo.mtx[0] = dinfo.mtx[1] = dinfo.mtx[2] = 1.;
245          if (getheader(fp, get_dminfo, &dinfo) < 0) {
246                  fclose(fp);
247                  return(NULL);
# Line 253 | Line 267 | rmx_load(const char *inspec)
267          dnew->info = dinfo.info;
268          switch (dinfo.dtype) {
269          case DTascii:
270 <                SET_FILE_TEXT(stdin);
270 >                SET_FILE_TEXT(fp);
271                  if (!rmx_load_ascii(dnew, fp))
272                          goto loaderr;
273                  dnew->dtype = DTascii;          /* should leave double? */
# Line 274 | Line 288 | rmx_load(const char *inspec)
288          case DTxyze:
289                  if (!rmx_load_rgbe(dnew, fp))
290                          goto loaderr;
291 <                dnew->dtype = dinfo.dtype;
291 >                dnew->dtype = dinfo.dtype;      /* undo exposure? */
292 >                if ((dinfo.mtx[0] != 1.) | (dinfo.mtx[1] != 1.) |
293 >                                (dinfo.mtx[2] != 1.)) {
294 >                        dinfo.mtx[0] = 1./dinfo.mtx[0];
295 >                        dinfo.mtx[1] = 1./dinfo.mtx[1];
296 >                        dinfo.mtx[2] = 1./dinfo.mtx[2];
297 >                        rmx_scale(dnew, dinfo.mtx);
298 >                }
299                  break;
300          default:
301                  goto loaderr;
# Line 654 | Line 675 | rmx_transform(const RMATRIX *msrc, int n, const double
675                  return(NULL);
676          if (msrc->info) {
677                  char    buf[128];
678 <                sprintf(buf, "Applied %dx%d matrix transform\n",
678 >                sprintf(buf, "Applied %dx%d component transform\n",
679                                  dnew->ncomp, msrc->ncomp);
680                  rmx_addinfo(dnew, msrc->info);
681                  rmx_addinfo(dnew, buf);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines