dryade/georuby-ext

View on GitHub
lib/georuby-ext/core_ext.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Numeric

  def deg2rad
    to_f / 180.0 * Math::PI
  end

  def rad2deg
    to_f * 180.0 / Math::PI 
  end

end