Merge branch '加速asin'

# Conflicts:
#	index.html
This commit is contained in:
Sabrina 2020-10-25 16:59:40 +08:00
commit b974097633

View File

@ -34,9 +34,13 @@
return Math.cos(a) return Math.cos(a)
} }
function sin(a) { function sin(a) {
return Math.sin(a); return Math.sin(a);
} }
function asin(a) {
return Math.asin(a);
}
</script> </script>
</body> </body>
</html> </html>