module PrintablePoint

Public Instance Methods

==(other) click to toggle source
# File lib/rui/toolkits/qtbase/qt.rb, line 95
def ==(other)
  self.x == other.x and self.y == other.y
end
to_s() click to toggle source
# File lib/rui/toolkits/qtbase/qt.rb, line 99
def to_s
  "(#{self.x}, #{self.y})"
end