copyNormalMatrix method

void copyNormalMatrix (Matrix4 arg)

Set this matrix to be the normal matrix of arg.

Implementation

void copyNormalMatrix(Matrix4 arg) {
  copyInverse(arg.getRotation());
  transpose();
}