XaitormanX
XaitormanX

Reputation: 909

Is there a Math3d function to multiply a vertex array with a 4x4 matrix?

I've looked at the source code and I haven't found anything, but I want to be shure, just in case. Is there any math3d function that takes a vertex array and multiplies it by a m3dmatrix44f?

Upvotes: 2

Views: 193

Answers (1)

genpfault
genpfault

Reputation: 52157

I'd recommend switching to Eigen or GLM for matrix-wrangling. Eigen has SIMD routines to speed up batch operations.

They're both header-only.

Upvotes: 2

Related Questions