google / mathfu

C++ math library developed primarily for games focused on simplicity and efficiency.
http://google.github.io/mathfu
Apache License 2.0
1.39k stars 189 forks source link

Matrix vector product question. #24

Closed panzergame closed 7 years ago

panzergame commented 7 years ago

Hello, i was looking at the source of Matrix and found that the product with a vector use a macro and not call the DotProduct function. Why this choice as it disable SIMD dot support for 2/3/4 size vector ?