# File ../lib/fox/core.rb, line 125 def ==(other) if other.kind_of?(FXRectangle) (self.x == other.x) && (self.y == other.y) && (self.w == other.w) && (self.h == other.h) else false end end