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

MakeWithRows() public static method

Returns a 3x3 matrix created from three row vectors.

Original signature is 'GLKMatrix3 GLKMatrix3MakeWithRows ( GLKVector3 row0, GLKVector3 row1, GLKVector3 row2 );'

Available in OS X x0.8 and later.

public static MakeWithRows ( GLKVector3 row0, GLKVector3 row1, GLKVector3 row2 ) : GLKMatrix3
row0 GLKVector3 MISSING
row1 GLKVector3 MISSING
row2 GLKVector3 MISSING
return GLKMatrix3
		public static GLKMatrix3 MakeWithRows (GLKVector3 row0, GLKVector3 row1, GLKVector3 row2)
		{
			GLKMatrix3 m = new GLKMatrix3 (row0.x, row1.x, row2.x,
                     row0.y, row1.y, row2.y,
                     row0.z, row1.z, row2.z);
			return m;

		}