identity method
Set this matrixs value as an idenity matrix
Implementation
Mat33 identity() {
set( 1, 0, 0, 0, 1, 0, 0, 0, 1 );
return this;
}
Set this matrixs value as an idenity matrix
Mat33 identity() {
set( 1, 0, 0, 0, 1, 0, 0, 0, 1 );
return this;
}