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

/openjdk7/jdk/src/share/classes/java/awt/image/
H A DBufferedImageOp.java119 * @param srcPt the <code>Point2D</code> that represents the point in
126 public Point2D getPoint2D (Point2D srcPt, Point2D dstPt); argument
H A DRasterOp.java94 * @param srcPt the source <code>Point2D</code>
98 public Point2D getPoint2D(Point2D srcPt, Point2D dstPt); argument
H A DBandCombineOp.java262 * is the same as the specified <CODE>srcPt</CODE>.
264 * @param srcPt The <code>Point2D</code> that represents the point in
271 public final Point2D getPoint2D (Point2D srcPt, Point2D dstPt) { argument
275 dstPt.setLocation(srcPt.getX(), srcPt.getY());
H A DAffineTransformOp.java502 * @param srcPt The <code>Point2D</code> that represents the source
509 public final Point2D getPoint2D (Point2D srcPt, Point2D dstPt) { argument
510 return xform.transform (srcPt, dstPt);
H A DConvolveOp.java330 * operation, the srcPt will equal the dstPt.
332 public final Point2D getPoint2D(Point2D srcPt, Point2D dstPt) { argument
336 dstPt.setLocation(srcPt.getX(), srcPt.getY());
H A DLookupOp.java448 * Since this is not a geometric operation, the <code>srcPt</code>
450 * @param srcPt a <code>Point2D</code> that represents a point
457 public final Point2D getPoint2D (Point2D srcPt, Point2D dstPt) { argument
461 dstPt.setLocation(srcPt.getX(), srcPt.getY());
H A DRescaleOp.java646 * operation, the srcPt will equal the dstPt.
647 * @param srcPt a point in the source image
651 public final Point2D getPoint2D (Point2D srcPt, Point2D dstPt) { argument
655 dstPt.setLocation(srcPt.getX(), srcPt.getY());
H A DColorConvertOp.java714 * @param srcPt the specified source <code>Point2D</code>
717 * the same as <code>srcPt</code>
719 public final Point2D getPoint2D (Point2D srcPt, Point2D dstPt) { argument
723 dstPt.setLocation(srcPt.getX(), srcPt.getY());

Completed in 43 milliseconds