Use fast Newton-Raphson Method for now.

This commit is contained in:
Jürg Lehni 2011-03-20 02:02:02 +00:00
parent 0620a19eb9
commit 11e70c5069

View file

@ -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) {