Lines Matching defs:start

38  * interpolation between each color.  The user also specifies start and end
61 * takes when it is filling the space outside the start and end points by
65 * colors between the start and end points.
80 * Point2D start = new Point2D.Float(0, 0);
85 * new LinearGradientPaint(start, end, dist, colors);
107 /** Gradient start and end points. */
108 private final Point2D start, end;
114 * @param startX the X coordinate of the gradient axis start point
116 * @param startY the Y coordinate of the gradient axis start point
130 * if start and end points are the same points,
151 * @param startX the X coordinate of the gradient axis start point
153 * @param startY the Y coordinate of the gradient axis start point
170 * if start and end points are the same points,
192 * @param start the gradient axis start {@code Point2D} in user space
203 * if start and end points are the same points,
209 public LinearGradientPaint(Point2D start, Point2D end,
212 this(start, end,
221 * @param start the gradient axis start {@code Point2D} in user space
235 * if start and end points are the same points,
241 public LinearGradientPaint(Point2D start, Point2D end,
245 this(start, end,
255 * @param start the gradient axis start {@code Point2D} in user space
274 * if start and end points are the same points,
281 public LinearGradientPaint(Point2D start, Point2D end,
290 if (start == null || end == null) {
295 if (start.equals(end)) {
301 this.start = new Point2D.Double(start.getX(), start.getY());
351 return new GradientPaintContext(cm, start, end,
359 start, end,
366 * Returns a copy of the start point of the gradient axis.
372 return new Point2D.Double(start.getX(), start.getY());