# File lib/zyps.rb, line 371 def Utility.inside_box?(point, upper_left, lower_right) return false if point.x < upper_left.x return false if point.y < upper_left.y return false if point.x > lower_right.x return false if point.y > lower_right.y true end