factor/extra/math/trig/trig.factor

8 lines
106 B
Factor
Raw Normal View History

2007-09-20 18:09:08 -04:00
USING: math math.constants ;
IN: math.trig
: deg>rad pi * 180 / ; inline
: rad>deg 180 * pi / ; inline