# File lib/rubygame/ftor.rb, line 222
        def /(other)
                x, y = @x.to_f, @y.to_f
    return self.class.new(x/other,y/other)
  rescue TypeError
    return self.class.new(x/other[0],y/other[1])
        end