a small mistake QuickReference.dox edited online with Bitbucket

This commit is contained in:
zhouzhaoping 2017-11-09 08:49:01 +00:00
parent 4c03b3511e
commit 912e9965ef

View File

@ -68,7 +68,7 @@ Array<float,4,1> <=> Array4f
Conversion between the matrix and array worlds: Conversion between the matrix and array worlds:
\code \code
Array44f a1, a1; Array44f a1, a2;
Matrix4f m1, m2; Matrix4f m1, m2;
m1 = a1 * a2; // coeffwise product, implicit conversion from array to matrix. m1 = a1 * a2; // coeffwise product, implicit conversion from array to matrix.
a1 = m1 * m2; // matrix product, implicit conversion from matrix to array. a1 = m1 * m2; // matrix product, implicit conversion from matrix to array.