OpenTK.Graphics.Rectangle.Offset C# (CSharp) Method

Offset() public method

Offset Method
Moves the Rectangle a specified distance.
public Offset ( int x, int y ) : void
x int
y int
return void
        public void Offset(int x, int y)
        {
            this.x += x;
            this.y += y;
        }

Same methods

Rectangle::Offset ( Point pos ) : void