Matrix4d.mulOrthoAffine

Multiply <code>this</code> orthographic projection matrix by the supplied {@link #isAffine() affine} <code>view</code> matrix. <p> If <code>M</code> is <code>this</code> matrix and <code>V</code> the <code>view</code> matrix, then the new matrix will be <code>M * V</code>. So when transforming a vector <code>v</code> with the new matrix by using <code>M * V * v</code>, the transformation of the <code>view</code> matrix will be applied first!

@param view the affine matrix which to multiply <code>this</code> with @return this

  1. Matrix4d mulOrthoAffine(Matrix4d view)
    struct Matrix4d
    ref return
    mulOrthoAffine
  2. Matrix4d mulOrthoAffine(Matrix4d view, Matrix4d dest)

Meta