clone method

Matrix4 clone()

Creates a new matrix and copies all values from this matrix.

Implementation

Matrix4 clone() {
	return Matrix4().copy( this );
}