Project290.Mathematics.tVector2.Set C# (CSharp) Method

Set() public method

Sets the specified Vector2 value.
public Set ( float xValue, float yValue ) : void
xValue float The x value.
yValue float The y value.
return void
        public void Set(float xValue, float yValue)
        {
            this.X.SetValue(xValue);
            this.Y.SetValue(yValue);
        }