Module: Math
- Included in:
- Color::Base
- Defined in:
- lib/quadtone/extensions/math.rb
Instance Method Summary collapse
Instance Method Details
#deg2rad(deg) ⇒ Object
3 4 5 |
# File 'lib/quadtone/extensions/math.rb', line 3 def deg2rad(deg) deg * (PI / 180) end |
#rad2deg(rad) ⇒ Object
7 8 9 |
# File 'lib/quadtone/extensions/math.rb', line 7 def rad2deg(rad) rad * (180 / PI) end |