Monobjc.GLKit.GLKMatrix3.GLKMatrix3 C# (CSharp) Method

GLKMatrix3() public method

Initializes a new instance of the Monobjc.GLKit.GLKMatrix3 struct.
public GLKMatrix3 ( float m00, float m01, float m02, float m10, float m11, float m12, float m20, float m21, float m22 ) : System.Runtime.InteropServices
m00 float
m01 float
m02 float
m10 float
m11 float
m12 float
m20 float
m21 float
m22 float
return System.Runtime.InteropServices
		public GLKMatrix3(float m00, float m01, float m02, float m10, float m11, float m12, float m20, float m21, float m22){
			this.m00 = m00;
			this.m01 = m01;
			this.m02 = m02;
			this.m10 = m10;
			this.m11 = m11;
			this.m12 = m12;
			this.m20 = m20;
			this.m21 = m21;
			this.m22 = m22;
		}