Fix invalid use of operator^ in matrix test

release/4.3a0
Tyler Veness 2025-01-10 15:36:30 -08:00
parent 5a44974785
commit 79960095b9
No known key found for this signature in database
GPG Key ID: AA007082A8B65599
1 changed files with 1 additions and 1 deletions

View File

@ -567,7 +567,7 @@ TEST(Matrix, matrix_vector_multiplication )
Vector AtAv = Vector3(142., 188., 234.);
EQUALITY(A*v,Av);
EQUALITY(A^Av,AtAv);
EQUALITY(A.transpose() * Av,AtAv);
}
/* ************************************************************************* */