mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
18 lines
238 B
V
18 lines
238 B
V
module math
|
|
|
|
fn C.cosf(x f32) f32
|
|
|
|
fn C.sinf(x f32) f32
|
|
|
|
// cosf calculates cosine. (float32)
|
|
[inline]
|
|
pub fn cosf(a f32) f32 {
|
|
return C.cosf(a)
|
|
}
|
|
|
|
// sinf calculates sine. (float32)
|
|
[inline]
|
|
pub fn sinf(a f32) f32 {
|
|
return C.sinf(a)
|
|
}
|