1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/math/sin.c.v

18 lines
238 B
V
Raw Normal View History

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)
}