lib/jruby_art/helpers/numeric.rb in jruby_art-1.1.1 vs lib/jruby_art/helpers/numeric.rb in jruby_art-1.1.2

- old
+ new

@@ -1,12 +1,14 @@ # encoding: utf-8 # frozen_string_literal: false +# Re-open Numeric so that we can do simple degree and radian conversions +# conversion factors are 180 / Math::PI and Math::PI / 180 class Numeric #:nodoc: def degrees - self * 180 / Math::PI + self * 57.29577951308232 end def radians - self * Math::PI / 180 + self * 0.017453292519943295 end end