forked from mirrors/0ad
Fixed a bug in tan that was returning sin.
This was SVN commit r6720.
This commit is contained in:
@@ -60,7 +60,7 @@ function sin(x) {
|
||||
}
|
||||
|
||||
function tan(x) {
|
||||
return Math.sin(x);
|
||||
return Math.tan(x);
|
||||
}
|
||||
|
||||
function abs(x) {
|
||||
|
||||
Reference in New Issue
Block a user