Monobjc.GLKit.GLKQuaternion.Make C# (CSharp) Method

Make() public static method

Returns a quaternion created from its separate components.

Original signature is 'GLKQuaternion GLKQuaternionMake ( float x, float y, float z, float w );'

Available in OS X x0.8 and later.

public static Make ( float x, float y, float z, float w ) : GLKQuaternion
x float MISSING
y float MISSING
z float MISSING
w float MISSING
return GLKQuaternion
		public static GLKQuaternion Make (float x, float y, float z, float w)
		{
			GLKQuaternion q = new GLKQuaternion (x, y, z, w);
			return q;
		}