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

GLKQuaternion() public method

Initializes a new instance of the Monobjc.GLKit.GLKQuaternion struct.
public GLKQuaternion ( float x, float y, float z, float w ) : System.Runtime.InteropServices
x float
y float
z float
w float
return System.Runtime.InteropServices
		public GLKQuaternion(float x, float y, float z, float w) {
			this.x = x;
			this.y = y;
			this.z = z;
			this.w = w;
		}
	}