Searched defs:lineTo (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DPathConsumer2D.h52 /* See GeneralPath.lineTo - returns true on error condition. */
83 LineToFunc *lineTo; member in struct:_PathConsumerVec
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DPathConsumer2D.java35 * @see java.awt.geom.Path2D.Float.lineTo
37 public void lineTo(float x, float y); method in interface:PathConsumer2D
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DTransformingPathConsumer2D.java132 public void lineTo(float x1, float y1) { method in class:TransformingPathConsumer2D.TranslateFilter
133 out.lineTo(x1 + tx, y1 + ty);
186 public void lineTo(float x1, float y1) { method in class:TransformingPathConsumer2D.ScaleFilter
187 out.lineTo(x1 * sx + tx, y1 * sy + ty);
246 public void lineTo(float x1, float y1) { method in class:TransformingPathConsumer2D.TransformFilter
247 out.lineTo(x1 * Mxx + y1 * Mxy + Mxt,
299 public void lineTo(float x1, float y1) { method in class:TransformingPathConsumer2D.DeltaScaleFilter
300 out.lineTo(x1 * sx, y1 * sy);
355 public void lineTo(float x1, float y1) { method in class:TransformingPathConsumer2D.DeltaTransformFilter
356 out.lineTo(x
[all...]
H A DDasher.java32 * (<code>moveTo</code>, <code>lineTo</code>, <code>close</code> and
123 out.lineTo(buf[off], buf[off+1]);
168 public void lineTo(float x1, float y1) { method in class:Dasher
552 lineTo(sx, sy);
H A DRenderer.java379 public void lineTo(float pix_x1, float pix_y1) { method in class:Renderer
410 // lineTo expects its input in pixel coordinates.
411 lineTo(pix_sx0, pix_sy0);
H A DStroker.java357 public void lineTo(float x1, float y1) { method in class:Stroker
399 lineTo(sx0, sy0);
455 out.lineTo(x1, y1);
818 lineTo(middle[0], middle[1]);
978 lineTo(middle[0], middle[1]);
1051 lineTo(middle[0], middle[1]);
1194 io.lineTo(curves[end], curves[end+1]);
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DShapeSpanIterator.java192 public native void lineTo(float x, float y); method in class:ShapeSpanIterator
/openjdk7/jdk/src/share/classes/sun/font/
H A DLayoutPathImpl.java179 * first point. If there is data, and the previous call was a lineTo, this
185 * Calling this is optional, lineTo will suffice and the initial point
199 public void lineTo(double x, double y) { method in class:LayoutPathImpl.SegmentPathBuilder
813 gp.lineTo((float)sx, (float)sy);
817 gp.lineTo((float)lx, (float)ly);
861 void lineTo(double x, double y) { method in class:LayoutPathImpl.SegmentPath.Mapper
894 lineTo(mpt.x, mpt.y);
912 case SEG_LINETO: lineTo(coords[0], coords[1]); break;
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DPath2D.java349 public final synchronized void lineTo(double x, double y) { method in class:Path2D.Float
362 * the double precision {@code lineTo()} method on the
367 * @see Path2D#lineTo
370 public final synchronized void lineTo(float x, float y) { method in class:Path2D.Float
672 lineTo(coords[0], coords[1]);
837 * <td>A {@link #lineTo lineTo} path segment follows.</td>
861 * <td>A {@link #lineTo lineTo} path segment follows.</td>
1159 public final synchronized void lineTo(doubl method in class:Path2D.Double
1721 public abstract void lineTo(double x, double y); method in class:Path2D
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSPrinterJob.java1417 protected void lineTo(float x, float y) { method in class:PSPrinterJob
1862 lineTo(segment[0], segment[1]);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPrinterJob.java923 protected void lineTo(float x, float y) { method in class:WPrinterJob
924 lineTo(getPrintDC(), x, y);
1395 protected native void lineTo(long printDC, float x, float y); method in class:WPrinterJob

Completed in 94 milliseconds