Method: Processing::Context#windowMove

Defined in:
lib/processing/context.rb

#windowMove(x, y) ⇒ nil

Move the position of the window.

Parameters:

  • x (Numeric)

    x position of the window

  • y (Numeric)

    y position of the window

Returns:

  • (nil)

    nil

See Also:



558
559
560
561
# File 'lib/processing/context.rb', line 558

def windowMove(x, y)
  @window__.pos = [x, y]
  nil
end