module Gdk::EventCoordsReader
Public Instance Methods
Source
# File lib/gdk3/event-readers.rb, line 87 def center calculated, x, y = super if calculated [x, y] else nil end end
Calls superclass method
Source
# File lib/gdk3/event-readers.rb, line 52 def coords found, x, y = super if found [x, y] else nil end end
Calls superclass method
Source
# File lib/gdk3/event-readers.rb, line 78 def get_angle(other_event) calculated, angle = Event.get_angle(self, other_event) if calculated angle else nil end end
Source
# File lib/gdk3/event-readers.rb, line 69 def get_distance(other_event) calculated, distance = Event.get_distance(self, other_event) if calculated distance else nil end end