Microsoft.Xna.Framework.Vector4.Vector4 C# (CSharp) Method

Vector4() public method

public Vector4 ( Vector2 value, float z, float w )
value Vector2
z float
w float
		public Vector4(Vector2 value, float z, float w)
        {
            this.W = w;
            this.X = value.X;
            this.Y = value.Y;
            this.Z = z;
        }

Same methods

Vector4::Vector4 ( float value )
Vector4::Vector4 ( float x, float y, float z, float w )