mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-06 04:42:15 -05:00
Fix accidentally removed comas.
This commit is contained in:
parent
6cc7417201
commit
f6f4c917f4
1 changed files with 2 additions and 2 deletions
|
@ -177,8 +177,8 @@ var Numerical = new function() {
|
|||
v1 = -2 * sqrt(Q);
|
||||
v2 = b / 3;
|
||||
return [
|
||||
v1 * cos(theta / 3) - v2
|
||||
v1 * cos((theta + 2 * PI) / 3) - v2
|
||||
v1 * cos(theta / 3) - v2,
|
||||
v1 * cos((theta + 2 * PI) / 3) - v2,
|
||||
v1 * cos((theta - 2 * PI) / 3) - v2
|
||||
];
|
||||
} else { // One real root
|
||||
|
|
Loading…
Reference in a new issue