mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-22 07:19:57 -05:00
Use fast Newton-Raphson Method for now.
This commit is contained in:
parent
0620a19eb9
commit
11e70c5069
1 changed files with 0 additions and 6 deletions
|
@ -384,12 +384,6 @@ var Curve = this.Curve = Base.extend({
|
|||
forward ? a : b - guess, // a
|
||||
forward ? a + guess : b, // b
|
||||
16, Numerical.TOLERANCE);
|
||||
/*
|
||||
return Numerical.findRootFalsePosition(f,
|
||||
forward ? a : b - guess, // a
|
||||
forward ? a + guess : b, // b
|
||||
16, Numerical.TOLERANCE);
|
||||
*/
|
||||
},
|
||||
|
||||
subdivide: function(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t) {
|
||||
|
|
Loading…
Reference in a new issue