Searched refs:newx (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DArea.java150 double newx, newy;
160 newx = coords[0];
162 Curve.insertLine(curves, curx, cury, newx, newy);
163 curx = newx;
167 newx = coords[2];
170 curx = newx;
174 newx = coords[4];
177 curx = newx;
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/sun/awt/geom/
H A DCrossings.java127 double newx, newy;
141 newx = coords[0];
143 if (cross.accumulateLine(curx, cury, newx, newy)) {
146 curx = newx;
150 newx = coords[2];
155 curx = newx;
159 newx = coords[4];
164 curx = newx;
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DPixelToParallelogramConverter.java313 double newx = normalize(px);
315 dx1 = normalize(px + dx1) - newx;
317 dx2 = normalize(px + dx2) - newx;
319 px = newx;
352 double newx = normalize(px);
354 dx1 = normalize(px + dx1) - newx;
356 dx2 = normalize(px + dx2) - newx;
358 px = 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;
/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DShapeSpanIterator.c176 jfloat newx = (jfloat) floor(x + 0.25f) + 0.25f; \
178 jfloat newadjx = newx - x; \
180 x = newx; \

Completed in 48 milliseconds