Hi,
Is it possible to give a Matrix4 as parameter to glMultMatrixf ?
Matrix4 matrix; glMultMatrixf(matrix);
Matrix4 don't seems to have an array
It is possible, like this:
Matrix4 mat = new Matrix4(); GL.MultMatrix(ref mat);
This overload was added in 0.9.2.
OK. Thanks.
Comments
Re: glMultMatrixf() with Matrix4 ?
It is possible, like this:
This overload was added in 0.9.2.
Re: glMultMatrixf() with Matrix4 ?
OK.
Thanks.