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

/openjdk10/jdk/src/java.desktop/share/classes/java/awt/image/
H A DRasterOp.java94 * @param srcPt the source {@code Point2D}
98 public Point2D getPoint2D(Point2D srcPt, Point2D dstPt); argument
H A DBufferedImageOp.java119 * @param srcPt the {@code Point2D} that represents the point in
126 public Point2D getPoint2D (Point2D srcPt, Point2D dstPt); argument
H A DBandCombineOp.java262 * is the same as the specified {@code srcPt}.
264 * @param srcPt The {@code Point2D} that represents the point in
271 public final Point2D getPoint2D (Point2D srcPt, Point2D dstPt) { argument
275 dstPt.setLocation(srcPt.getX(), srcPt.getY());
H A DConvolveOp.java331 * operation, the srcPt will equal the dstPt.
333 public final Point2D getPoint2D(Point2D srcPt, Point2D dstPt) { argument
337 dstPt.setLocation(srcPt.getX(), srcPt.getY());
H A DLookupOp.java448 * Since this is not a geometric operation, the {@code srcPt}
450 * @param srcPt a {@code Point2D} that represents a point
457 public final Point2D getPoint2D (Point2D srcPt, Point2D dstPt) { argument
461 dstPt.setLocation(srcPt.getX(), srcPt.getY());
H A DRescaleOp.java672 * operation, the srcPt will equal the dstPt.
673 * @param srcPt a point in the source image
677 public final Point2D getPoint2D (Point2D srcPt, Point2D dstPt) { argument
681 dstPt.setLocation(srcPt.getX(), srcPt.getY());
H A DAffineTransformOp.java505 * @param srcPt The {@code Point2D} that represents the source
512 public final Point2D getPoint2D (Point2D srcPt, Point2D dstPt) { argument
513 return xform.transform (srcPt, dstPt);
H A DColorConvertOp.java714 * @param srcPt the specified source {@code Point2D}
717 * the same as {@code srcPt}
719 public final Point2D getPoint2D (Point2D srcPt, Point2D dstPt) { argument
723 dstPt.setLocation(srcPt.getX(), srcPt.getY());

Completed in 160 milliseconds