clone method
Creates a new matrix and copies all values from this matrix.
Implementation
Matrix4 clone() {
return Matrix4().copy( this );
}
Creates a new matrix and copies all values from this matrix.
Matrix4 clone() {
return Matrix4().copy( this );
}