Searched defs:within (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DHelpers.java41 static boolean within(final float x, final float y, final float err) { method in class:Helpers
46 static boolean within(final double x, final double y, final double err) { method in class:Helpers
139 if (within(D, 0, 1e-8)) {
H A DStroker.java522 private static boolean within(final float x1, final float y1, method in class:Stroker
529 return (Helpers.within(x1, x2, ERR) && // we want to avoid calling Math.abs
530 Helpers.within(y1, y2, ERR)); // this is just as good.
569 final boolean p1eqp2 = within(x1,y1,x2,y2, 6 * ulp(y2));
570 final boolean p3eqp4 = within(x3,y3,x4,y4, 6 * ulp(y4));
586 if (Helpers.within(dotsq, l1sq * l4sq, 4 * ulp(dotsq))) {
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DCubicCurve2D.java1152 if (iszero(D, err) || within(u, v, err)) {
1300 if (within(t, origt, 1000*ulp(origt)) && inInterval(t, min, max)) {
1359 private static boolean within(double x, double y, double err) { method in class:CubicCurve2D
1365 return within(x, 0, err);

Completed in 46 milliseconds