CSE.Content.Vector3.Vector3 C# (CSharp) Method

Vector3() public method

public Vector3 ( float x, float y, float z )
x float
y float
z float
		public Vector3(float x, float y, float z) {
			X = x;
			Y = y;
			Z = z;
		}
	}
Vector3