Searched defs:eqn (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DCubicCurve2D.java1053 * Solves the cubic whose coefficients are in the <code>eqn</code>
1058 * eqn = {c, b, a, d}
1064 * @param eqn an array containing coefficients for a cubic
1068 public static int solveCubic(double eqn[]) { argument
1069 return solveCubic(eqn, eqn);
1073 * Solve the cubic whose coefficients are in the <code>eqn</code>
1077 * eqn = {c, b, a, d}
1082 * @param eqn the specified array of coefficients to use to solve
1089 public static int solveCubic(double eqn[], doubl argument
1182 fixRoots(double[] eqn, double[] res, int num) argument
1282 refineRootWithHint(double[] eqn, double min, double max, double t) argument
1306 bisectRootWithHint(double[] eqn, double x0, double xe, double hint) argument
1336 bisectRoot(double[] eqn, double x0, double xe) argument
1372 solveEqn(double eqn[], int order, double t) argument
1388 getRootUpperBound(double[] eqn) argument
[all...]
H A DQuadCurve2D.java838 * Solves the quadratic whose coefficients are in the <code>eqn</code>
843 * eqn = {C, B, A};
849 * @param eqn the array that contains the quadratic coefficients
854 public static int solveQuadratic(double eqn[]) { argument
855 return solveQuadratic(eqn, eqn);
859 * Solves the quadratic whose coefficients are in the <code>eqn</code>
864 * eqn = {C, B, A};
870 * @param eqn the specified array of coefficients to use to solve
878 public static int solveQuadratic(double eqn[], doubl argument
1039 fillEqn(double eqn[], double val, double c1, double cp, double c2) argument
[all...]

Completed in 38 milliseconds