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

/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DRectangle2D.java783 * <code>newx</code> and <code>newy</code>, to this
797 * @param newy the Y coordinate of the new point
800 public void add(double newx, double newy) { argument
803 double y1 = Math.min(getMinY(), newy);
804 double y2 = Math.max(getMaxY(), newy);
/openjdk7/jdk/src/share/classes/java/awt/
H A DRectangle.java378 int newx, newy, neww, newh;
398 newy = Integer.MAX_VALUE;
401 newy = clip(y, false);
402 if (height >= 0) height += y-newy;
406 reshape(newx, newy, neww, newh);
905 * Adds a point, specified by the integer arguments {@code newx,newy}
926 * r.add(newx, newy, 1, 1);
929 * @param newy the Y coordinate of the new point
931 public void add(int newx, int newy) { argument
934 this.y = newy;
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11Renderer.c189 int newy = CLAMP_TO_SHORT(ycoords[in] + transy); local
190 if (newx != oldx || newy != oldy) {
192 points[out].y = newy;
195 oldy = newy;

Completed in 297 milliseconds