copyNormalMatrix method
Set this matrix to be the normal matrix of arg
.
Implementation
void copyNormalMatrix(Matrix4 arg) {
copyInverse(arg.getRotation());
transpose();
}
Set this matrix to be the normal matrix of arg
.
void copyNormalMatrix(Matrix4 arg) {
copyInverse(arg.getRotation());
transpose();
}