Searched refs:newy (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DArea.java150 double newx, newy;
161 newy = coords[1];
162 Curve.insertLine(curves, curx, cury, newx, newy);
164 cury = newy;
168 newy = coords[3];
171 cury = newy;
175 newy = coords[5];
178 cury = newy;
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/sun/awt/geom/
H A DCrossings.java127 double newx, newy;
142 newy = coords[1];
143 if (cross.accumulateLine(curx, cury, newx, newy)) {
147 cury = newy;
151 newy = coords[3];
156 cury = newy;
160 newy = coords[5];
165 cury = newy;
H A DCurve.java938 double newy = y + bump;
939 if (newy <= y) {
942 if (fairlyClose(this.XforY(newy), that.XforY(newy))) {
943 y = newy;
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DPixelToParallelogramConverter.java314 double newy = normalize(py);
316 dy1 = normalize(py + dy1) - newy;
318 dy2 = normalize(py + dy2) - newy;
320 py = newy;
353 double newy = normalize(py);
355 dy1 = normalize(py + dy1) - newy;
357 dy2 = normalize(py + dy2) - newy;
359 py = 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;
/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DShapeSpanIterator.c177 jfloat newy = (jfloat) floor(y + 0.25f) + 0.25f; \
179 jfloat newadjy = newy - y; \
181 y = newy; \

Completed in 1861 milliseconds