-
Notifications
You must be signed in to change notification settings - Fork 0
/
math.red
45 lines (44 loc) · 860 Bytes
/
math.red
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Red []
Math: context [
_*: :*
_**: :**
_+: :+
_-: :-
_absolute: :absolute
_acos: :acos
_add: :add
_arccosine: :arccosine
_arcsine: :arcsine
_arctangent: :arctangent
_arctangent2: :arctangent2
_asin: :asin
_atan: :atan
_atan2: :atan2
_cos: :cos
_cosine: :cosine
_divide: :divide
_even?: :even?
_exp: :exp
_log-10: :log-10
_log-2: :log-2
_log-e: :log-e
_math: :math
_max: :max
_min: :min
_modulo: :modulo
_multiply: :multiply
_NaN?: :NaN?
_negate: :negate
_odd?: :odd?
_pi: :pi
_power: :power
_random: :random
_remainder: :remainder
_round: :round
_sin: :sin
_sine: :sine
_square-root: :square-root
_subtract: :subtract
_tan: :tan
_tangent: :tangent
]