Fixed following copy/paste error:

function tan(x) {
	return Math.sin(x); --> Math.tan(x)
}

This was SVN commit r6601.
This commit is contained in:
brian 2009-01-06 20:22:33 +00:00
parent d43636f8ae
commit 3ade70fef3

View File

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