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

/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DOrder2.java45 private double xcoeff2; field in class:Order2
184 xcoeff2 = x0 - cx0 - cx0 + x1;
345 return (xcoeff2 * t + xcoeff1) * t + xcoeff0;
355 return (xcoeff2 * t + xcoeff1) * t + xcoeff0;
357 return 2 * xcoeff2 * t + xcoeff1;
359 return 2 * xcoeff2;
379 double t = -xcoeff1 / (2 * xcoeff2);
388 double t = -xcoeff1 / (2 * xcoeff2);
H A DOrder3.java48 private double xcoeff2; field in class:Order3
250 xcoeff2 = (cx1 - cx0 - 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;
508 return (6 * xcoeff3 * t) + 2 * xcoeff2;
532 double eqn[] = {xcoeff1, 2 * xcoeff2, 3 * xcoeff3};
544 double eqn[] = {xcoeff1, 2 * xcoeff2, 3 * xcoeff3};

Completed in 55 milliseconds