add acos function
This commit is contained in:
parent
b974097633
commit
b37201eaa1
@ -38,9 +38,14 @@
|
|||||||
function sin(a) {
|
function sin(a) {
|
||||||
return Math.sin(a);
|
return Math.sin(a);
|
||||||
}
|
}
|
||||||
|
|
||||||
function asin(a) {
|
function asin(a) {
|
||||||
return Math.asin(a);
|
return Math.asin(a);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function acos(a) {
|
||||||
|
return Math.acos(a);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user