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

/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DOrder2.java44 private double xcoeff1; field in class:Order2
183 xcoeff1 = cx0 + cx0 - x0 - x0;
345 return (xcoeff2 * t + xcoeff1) * t + xcoeff0;
355 return (xcoeff2 * t + xcoeff1) * t + xcoeff0;
357 return 2 * xcoeff2 * t + xcoeff1;
379 double t = -xcoeff1 / (2 * xcoeff2);
388 double t = -xcoeff1 / (2 * xcoeff2);
H A DOrder3.java47 private double xcoeff1; field in class:Order3
249 xcoeff1 = (cx0 - x0) * 3.0;
494 return (((xcoeff3 * t) + xcoeff2) * t + xcoeff1) * t + xcoeff0;
504 return (((xcoeff3 * t) + xcoeff2) * t + xcoeff1) * t + xcoeff0;
506 return ((3 * xcoeff3 * t) + 2 * xcoeff2) * t + xcoeff1;
532 double eqn[] = {xcoeff1, 2 * xcoeff2, 3 * xcoeff3};
544 double eqn[] = {xcoeff1, 2 * xcoeff2, 3 * xcoeff3};

Completed in 31 milliseconds