add asin function
This commit is contained in:
parent
e396b2321a
commit
db98dc718b
@ -33,6 +33,10 @@
|
|||||||
function cos(a) {
|
function cos(a) {
|
||||||
return Math.cos(a)
|
return Math.cos(a)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function asin(a) {
|
||||||
|
return Math.asin(a);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user