forked from vlang/v
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmath.v
More file actions
98 lines (76 loc) · 1.18 KB
/
Copy pathmath.v
File metadata and controls
98 lines (76 loc) · 1.18 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module math
const (
PI = 3.14159265358979323846264338327950288419716939937510582097494459
)
fn abs(a f64) f64 {
if a < 0 {
return -a
}
return a
}
fn ceil(a f64) f64 {
return C.ceil(a)
}
fn cos(a f64) f64 {
return C.cos(a)
}
fn cosh(a f64) f64 {
return C.cosh(a)
}
fn exp(a f64) f64 {
return C.exp(a)
}
fn floor(a f64) f64 {
return C.floor(a)
}
fn log(a f64) f64 {
return C.log(a)
}
fn log10(a f64) f64 {
return C.log10(a)
}
fn max(a, b f64) f64 {
if a > b {
return a
}
return b
}
fn min(a, b f64) f64 {
if a < b {
return a
}
return b
}
fn pow(a, b f64) f64 {
return C.pow(a, b)
}
fn radians(degrees f64) f64 {
return degrees * (PI / 180.0)
}
fn degrees(radians f64) f64 {
return radians * (180.0 / PI)
}
fn round(f f64) f64 {
return C.round(f)
}
fn sin(a f64) f64 {
return C.sin(a)
}
fn sinh(a f64) f64 {
return C.sinh(a)
}
fn sqrt(a f64) f64 {
return C.sqrt(a)
}
fn tan(a f64) f64 {
return C.tan(a)
}
fn tanh(a f64) f64 {
return C.tanh(a)
}
fn trunc(a f64) f64 {
return C.trunc(a)
}