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

Comparing ray/src/common/fvect.c (file contents):
Revision 1.1 by greg, Thu Feb 2 10:34:32 1989 UTC vs.
Revision 2.2 by greg, Fri Oct 2 16:02:43 1992 UTC

# Line 10 | Line 10 | static char SCCSid[] = "$SunId$ LBL";
10   *     8/14/85
11   */
12  
13 + #include  <math.h>
14   #include  "fvect.h"
15  
15 #define  FTINY          1e-7
16  
17
17   double
18   fdot(v1, v2)                    /* return the dot product of two vectors */
19   register FVECT  v1, v2;
# Line 83 | Line 82 | register FVECT  vres, v1, v2;
82   }
83  
84  
85 + fvsum(vres, v0, v1, f)          /* vres = v0 + f*v1 */
86 + FVECT  vres, v0, v1;
87 + double  f;
88 + {
89 +        vres[0] = v0[0] + f*v1[0];
90 +        vres[1] = v0[1] + f*v1[1];
91 +        vres[2] = v0[2] + f*v1[2];
92 + }
93 +
94 +
95   double
96   normalize(v)                    /* normalize a vector, return old magnitude */
97   register FVECT  v;
# Line 91 | Line 100 | register FVECT  v;
100          
101          len = DOT(v, v);
102          
103 <        if (len <= FTINY*FTINY)
103 >        if (len <= 0.0)
104                  return(0.0);
105          
106 +        /****** problematic
107          if (len >= (1.0-FTINY)*(1.0-FTINY) &&
108                          len <= (1.0+FTINY)*(1.0+FTINY))
109                  return(1.0);
110 +        ******/
111  
112          len = sqrt(len);
113          v[0] /= len;
114          v[1] /= len;
115          v[2] /= len;
116          return(len);
117 + }
118 +
119 +
120 + spinvector(vres, vorig, vnorm, theta)   /* rotate vector around normal */
121 + FVECT  vres, vorig, vnorm;
122 + double  theta;
123 + {
124 +        double  sint, cost, normprod;
125 +        FVECT  vperp;
126 +        register int  i;
127 +        
128 +        if (theta == 0.0) {
129 +                if (vres != vorig)
130 +                        VCOPY(vres, vorig);
131 +                return;
132 +        }
133 +        cost = cos(theta);
134 +        sint = sin(theta);
135 +        normprod = DOT(vorig, vnorm)*(1.-cost);
136 +        fcross(vperp, vnorm, vorig);
137 +        for (i = 0; i < 3; i++)
138 +                vres[i] = vorig[i]*cost + vnorm[i]*normprod + vperp[i]*sint;
139   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines