You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When reading binary files, it would be useful to be able to create Matrices and Vectors from primitive arrays. Currently, this is only possible for the MatrixN or VectorN classes, if I want an object of specific size, I need to copy it manually or create it from an N object which is additional overhead.
The text was updated successfully, but these errors were encountered:
Are you sure that something like. new VectorNf(array).toVector3() being slower than new Vector3f(array[0], array[1], array[2]) is a bottleneck in your program?
Also, would you mind coming to the #flow IRC channel on EsperNet to discuss this issue?
When reading binary files, it would be useful to be able to create Matrices and Vectors from primitive arrays. Currently, this is only possible for the MatrixN or VectorN classes, if I want an object of specific size, I need to copy it manually or create it from an N object which is additional overhead.
The text was updated successfully, but these errors were encountered: