mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
Ooops! Typo in macro. Ref #385
This commit is contained in:
parent
1b1490a972
commit
aab6ce3c9e
@ -308,7 +308,7 @@ Assigns the product of A, B, and V to P.
|
||||
p_i = \sum_{j=0}^{2} A_{i,j} \left( \sum_{k=0}^{2} B_{j,k} \cdot v_i \right) : i\in 0..2
|
||||
\f]
|
||||
*/
|
||||
#define MxMxV(prod, mat1, mat2, v ) { \
|
||||
#define MxMxV(prod, mat1, mat2, vect ) { \
|
||||
prod[0] = mat1[0][0] *(mat2[0][0] * vect[0] + mat2[0][1] * vect[1] + mat2[0][2] * vect[2])+\
|
||||
mat1[0][1] *(mat2[1][0] * vect[0] + mat2[1][1] * vect[1] + mat2[1][2] * vect[2])+\
|
||||
mat1[0][2] *(mat2[2][0] * vect[0] + mat2[2][1] * vect[1] + mat2[2][2] * vect[2]);\
|
||||
|
Loading…
Reference in New Issue
Block a user