Fixed a bug in tan that was returning sin.

This was SVN commit r6720.
This commit is contained in:
Matei 2009-03-03 06:45:44 +00:00
parent ed65cf33d0
commit 4af379eec6

View File

@ -60,7 +60,7 @@ function sin(x) {
}
function tan(x) {
return Math.sin(x);
return Math.tan(x);
}
function abs(x) {