Module: NumericExtensions
- Defined in:
- lib/ruby_extensions.rb
Instance Method Summary collapse
Instance Method Details
#mod360 ⇒ Object
40 41 42 |
# File 'lib/ruby_extensions.rb', line 40 def mod360 self % 360 end |
#sgn ⇒ Object
36 37 38 |
# File 'lib/ruby_extensions.rb', line 36 def sgn negative? ? -1 : 1 end |