repo.or.cz
/
factor
/
jcg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Working on better POST and PUT requests
[factor/jcg.git]
/
extra
/
math
/
trig
/
trig.factor
blob
515d7c7b993e4def7e215e3062ef65bd259e4a2c
1
! Copyright (C) 2008 Eduardo Cavazos.
2
! See http://factorcode.org/license.txt for BSD license.
3
USING: math math.constants ;
4
IN: math.trig
5
6
: deg>rad ( x -- y ) pi * 180 / ; inline
7
: rad>deg ( x -- y ) 180 * pi / ; inline