Searched defs:newx (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
796 * @param newx the X coordinate of the new point
800 public void add(double newx, double newy) { argument
801 double x1 = Math.min(getMinX(), newx);
802 double x2 = Math.max(getMaxX(), newx);
/openjdk7/jdk/src/share/classes/java/awt/
H A DRectangle.java378 int newx, newy, neww, newh;
388 newx = Integer.MAX_VALUE;
391 newx = clip(x, false);
392 if (width >= 0) width += x-newx;
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);
928 * @param newx the X coordinate of the new point
931 public void add(int newx, int newy) { argument
933 this.x = newx;
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11Renderer.c188 int newx = CLAMP_TO_SHORT(xcoords[in] + transx); local
190 if (newx != oldx || newy != oldy) {
191 points[out].x = newx;
194 oldx = newx;

Completed in 86 milliseconds