summaryrefslogtreecommitdiffhomepage
path: root/app/helpers/vectors/magnitude.rb
blob: 638f0340bf7939df4dcca2f4b958827d79ce0247 (plain)
1
2
3
4
5
6
7
class Helpers
  class Vectors
    def self.magnitude(x2, y2, x1 = 0, y1 = 0)
      Math.sqrt((((x2 - x1)**2) + ((y2 - y1)**2)).to_f)
    end
  end
end