|
From: Gordon K. <kin...@us...> - 2004-05-11 02:10:06
|
Update of /cvsroot/teem/teem/src/ell In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32548 Modified Files: ellMacros.h Log Message: another macro! Index: ellMacros.h =================================================================== RCS file: /cvsroot/teem/teem/src/ell/ellMacros.h,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** ellMacros.h 10 May 2004 19:32:21 -0000 1.43 --- ellMacros.h 11 May 2004 02:09:54 -0000 1.44 *************** *** 229,232 **** --- 229,237 ---- (v2)[2] = AIR_ABS((v1)[2])) + #define ELL_3M_SCALE_SET(m, x, y, z) \ + (ELL_3V_SET((m)+ 0, (x), 0 , 0 ), \ + ELL_3V_SET((m)+ 3, 0 , (y), 0 ), \ + ELL_3V_SET((m)+ 6, 0 , 0 , (z))) + #define ELL_3M_SCALE(m2, s, m1) \ (ELL_3V_SCALE((m2)+0, (s), (m1)+0), \ |