copyNormalMatrix method

void copyNormalMatrix(
  1. Matrix4 arg
)

Set this matrix to be the normal matrix of arg.

Implementation

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