Method: CloudMade::BBox#==
- Defined in:
- lib/geometry.rb
#==(bbox) ⇒ Object
134 135 136 137 |
# File 'lib/geometry.rb', line 134 def ==(bbox) return (bbox.points[0] == self.points[0] and bbox.points[1] = self.points[1] or bbox.points[0] == self.points[1] and bbox.points[1] = self.points[0]) end |