Colours are equal to one another if they have the same red, green and blue intensity, and the same alpha
# File wx/classes/colour.rb, line 35 def ==(other) if not other.is_a?(self.class) raise ArgumentError, "No comparison of #{self} to #{other}" end [ red, green, blue, alpha ] == [ other.red, other.green, other.blue, other.alpha ] end
Disabled; run with $DEBUG to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.