module RouteBoxer
Constants
- VERSION
Public Instance Methods
deg2rad(deg)
click to toggle source
# File lib/route_boxer.rb, line 9 def deg2rad(deg) deg * Math::PI / 180 end
rad2deg(rad)
click to toggle source
# File lib/route_boxer.rb, line 13 def rad2deg(rad) rad * 180 / Math::PI end