Axiom.Math.Matrix4.GetMatrix3 C# (CSharp) Method

GetMatrix3() public method

Returns a 3x3 portion of this 4x4 matrix.
public GetMatrix3 ( ) : Axiom.Math.Matrix3
return Axiom.Math.Matrix3
		public Matrix3 GetMatrix3()
		{
			return
				new Matrix3(
					this.m00, this.m01, this.m02,
					this.m10, this.m11, this.m12,
					this.m20, this.m21, this.m22 );
		}