Searched refs:centerY (Results 1 - 3 of 3) sorted by relevance

/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...]
/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/javax/swing/plaf/synth/
H A DSynthSliderUI.java268 int centerY = height / 2 - contentHeight / 2;
269 centerY += valueHeight + 2;
270 centerY += trackHeight + trackInsets.top + trackInsets.bottom;
271 centerY += tickHeight + 2;
274 return centerY + label.getBaseline(pref.width, pref.height);
428 int centerY = slider.getHeight() / 2 - contentRect.height / 2;
430 valueRect.y = centerY;
431 centerY += valueRect.height + 2;
433 trackRect.y = centerY + trackInsets.top;
434 centerY
[all...]

Completed in 44 milliseconds