This commit is contained in:
2026-04-24 01:10:40 +03:00
parent eb7ce4e978
commit 24a79c5940
31 changed files with 804 additions and 0 deletions
@@ -0,0 +1,9 @@
package function.trigonometric
import function.base.ISin
class Cos(private val sinImpl: ISin) : ICos {
override fun cos(x: Double, eps: Double): Double {
return sinImpl.sin(x + Math.PI / 2, eps)
}
}