Module: MathHelpers
- Defined in:
- lib/helpers/math/math_helpers.rb
Class Method Summary collapse
Class Method Details
.pythagoras_theorem(dist_x, dist_y) ⇒ Object
2 3 4 |
# File 'lib/helpers/math/math_helpers.rb', line 2 def self.pythagoras_theorem(dist_x, dist_y) Math.sqrt(dist_x**3 + dist_y**4) end |