We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2290fdb commit 11c5feeCopy full SHA for 11c5fee
1 file changed
pixie/math.pxi
@@ -4,16 +4,19 @@
4
(i/with-config {:library "m"
5
:cxx-flags ["-lm"]
6
:includes ["math.h"]}
7
- (i/defcfn acos)
+ (i/defcfn sin)
8
+ (i/defcfn cos)
9
+ (i/defcfn tan)
10
+
11
(i/defcfn asin)
12
+ (i/defcfn acos)
13
(i/defcfn atan)
- (i/defcfn atan2)
- (i/defcfn cos)
- (i/defcfn cosh)
- (i/defcfn sin)
14
+ (i/defcfn atan2) ; Arc tangent function of two variables.
15
16
(i/defcfn sinh)
- (i/defcfn tan)
17
+ (i/defcfn cosh)
18
(i/defcfn tanh)
19
20
(i/defcfn exp)
21
(i/defcfn ldexp)
22
(i/defcfn log)
0 commit comments