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

/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DRectangularShape.java281 * @param centerY the Y coordinate of the specified center point
286 public void setFrameFromCenter(double centerX, double centerY, argument
289 double halfH = Math.abs(cornerY - centerY);
290 setFrame(centerX - halfW, centerY - halfH, halfW * 2.0, halfH * 2.0);
/openjdk7/jdk/src/share/classes/java/awt/
H A DRadialGradientPaintContext.java55 private float centerX, centerY, focusX, focusY; field in class:RadialGradientPaintContext
128 centerY = cy;
133 this.isSimpleFocus = (focusX == centerX) && (focusY == centerY);
140 float dY = focusY - centerY;
151 focusY = centerY + dY;
160 constB = a12 - centerY;
337 -radiusSq + (centerX * centerX) + (centerY * centerY);
353 final float precalc2 = 2 * centerY;
390 solutionY = centerY;
[all...]

Completed in 45 milliseconds