Method: UI::Point#update

Defined in:
lib/ektoplayer/ui.rb

#update(x: nil, y: nil) ⇒ Object



215
216
217
# File 'lib/ektoplayer/ui.rb', line 215

def update(x: nil, y: nil)
   Point.new(x: (x or @x), y: (y or @y))
end