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

/openjdk7/jdk/src/share/classes/java/awt/image/
H A DBufferedImageOp.java117 * point in the source image. If <CODE>dstPt</CODE> is specified, it
121 * @param dstPt The <CODE>Point2D</CODE> in which to store the result
126 public Point2D getPoint2D (Point2D srcPt, Point2D dstPt); argument
H A DRasterOp.java92 * point in the source Raster. If dstPt is non-null, it
95 * @param dstPt the destination <code>Point2D</code>
98 public Point2D getPoint2D(Point2D srcPt, Point2D dstPt); argument
H A DBandCombineOp.java259 * point in the source <CODE>Raster</CODE>. If <CODE>dstPt</CODE> is
266 * @param dstPt The <CODE>Point2D</CODE> in which to store the result.
271 public final Point2D getPoint2D (Point2D srcPt, Point2D dstPt) { argument
272 if (dstPt == null) {
273 dstPt = new Point2D.Float();
275 dstPt.setLocation(srcPt.getX(), srcPt.getY());
277 return dstPt;
H A DConvolveOp.java328 * point in the source. If dstPt is non-null, it will
330 * operation, the srcPt will equal the dstPt.
332 public final Point2D getPoint2D(Point2D srcPt, Point2D dstPt) { argument
333 if (dstPt == null) {
334 dstPt = new Point2D.Float();
336 dstPt.setLocation(srcPt.getX(), srcPt.getY());
338 return dstPt;
H A DLookupOp.java446 * point in the source. If <code>dstPt</code> is not
449 * will equal the <code>dstPt</code>.
452 * @param dstPt a <code>Point2D</code>that represents the location
457 public final Point2D getPoint2D (Point2D srcPt, Point2D dstPt) { argument
458 if (dstPt == null) {
459 dstPt = new Point2D.Float();
461 dstPt.setLocation(srcPt.getX(), srcPt.getY());
463 return dstPt;
H A DRescaleOp.java644 * point in the source. If dstPt is non-null, it will
646 * operation, the srcPt will equal the dstPt.
648 * @param dstPt the destination point or <code>null</code>
651 public final Point2D getPoint2D (Point2D srcPt, Point2D dstPt) { argument
652 if (dstPt == null) {
653 dstPt = new Point2D.Float();
655 dstPt.setLocation(srcPt.getX(), srcPt.getY());
656 return dstPt;
H A DAffineTransformOp.java499 * point in the source. If <CODE>dstPt</CODE> is specified, it
504 * @param dstPt The <CODE>Point2D</CODE> in which to store the result.
509 public final Point2D getPoint2D (Point2D srcPt, Point2D dstPt) { argument
510 return xform.transform (srcPt, dstPt);
H A DColorConvertOp.java710 * point in the source. If <code>dstPt</code> is non-null,
715 * @param dstPt the destination <code>Point2D</code>
716 * @return <code>dstPt</code> after setting its location to be
719 public final Point2D getPoint2D (Point2D srcPt, Point2D dstPt) { argument
720 if (dstPt == null) {
721 dstPt = new Point2D.Float();
723 dstPt.setLocation(srcPt.getX(), srcPt.getY());
725 return dstPt;

Completed in 42 milliseconds