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

18 lines
234 B
V
Raw Normal View History

module math
fn JS.Math.cos(x f64) f64
fn JS.Math.sin(x f64) f64
// cos calculates cosine.
[inline]
pub fn cos(a f64) f64 {
return JS.Math.cos(a)
}
// sin calculates sine.
[inline]
pub fn sin(a f64) f64 {
return JS.Math.sin(a)
}