Lines Matching refs:radius

41  * which is described by a center point and a radius.  The user can also
52 * Specifying a focus point outside of the radius of the circle will cause
77 * takes when it is filling the space outside the circle's radius by
108 * float radius = 25;
112 * new RadialGradientPaint(center, radius, dist, colors);
129 * float radius = 25;
134 * new RadialGradientPaint(center, radius, focus,
161 private final float radius;
174 * @param radius the radius of the circle defining the extents of the
186 * if {@code radius} is non-positive,
192 public RadialGradientPaint(float cx, float cy, float radius,
196 radius,
210 * @param radius the radius of the circle defining the extents of the
223 * if {@code radius} is non-positive,
229 public RadialGradientPaint(Point2D center, float radius,
233 radius,
250 * @param radius the radius of the circle defining the extents of the
265 * if {@code radius} is non-positive,
271 public RadialGradientPaint(float cx, float cy, float radius,
276 radius,
289 * @param radius the radius of the circle defining the extents of the
305 * if {@code radius} is non-positive,
311 public RadialGradientPaint(Point2D center, float radius,
316 radius,
333 * @param radius the radius of the circle defining the extents of the
352 * if {@code radius} is non-positive,
358 public RadialGradientPaint(float cx, float cy, float radius,
364 radius,
378 * @param radius the radius of the circle defining the extents of the color
395 * if {@code radius} is non-positive,
401 public RadialGradientPaint(Point2D center, float radius,
407 radius,
422 * @param radius the radius of the circle defining the extents of the
444 * if {@code radius} is non-positive,
450 @ConstructorProperties({ "centerPoint", "radius", "focusPoint", "fractions", "colors", "cycleMethod", "colorSpace", "transform" })
452 float radius,
470 if (radius <= 0) {
478 this.radius = radius;
537 // radius is set to 1.0, and then we set a scale transform
608 radius,
627 * was constructed lies outside of the radius of the circle, this
630 * point that lies inside the radius.
639 * Returns the radius of the circle defining the radial gradient.
641 * @return the radius of the circle defining the radial gradient
644 return radius;