Lines Matching defs:radius
74 static SkPath Circle(SkScalar center_x, SkScalar center_y, SkScalar radius,
843 is part of circle sized to radius, positioned so it touches both tangent lines.
848 Arc sweep is always less than 180 degrees. If radius is zero, or if
858 @param radius distance from arc to circle center
865 SkPath& arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar radius);
870 is part of circle sized to radius, positioned so it touches both tangent lines.
875 Arc sweep is always less than 180 degrees. If radius is zero, or if
883 @param radius distance from arc to circle center
886 SkPath& arcTo(const SkPoint p1, const SkPoint p2, SkScalar radius) {
887 return this->arcTo(p1.fX, p1.fY, p2.fX, p2.fY, radius);
914 @param rx radius on x-axis before x-axis rotation
915 @param ry radius on y-axis before x-axis rotation
971 @param rx radius before x-axis rotation
972 @param ry radius before x-axis rotation
1113 /** Adds circle centered at (x, y) of size radius to SkPath, appending kMove_Verb,
1114 four kConic_Verb, and kClose_Verb. Circle begins at: (x + radius, y), continuing
1117 Has no effect if radius is zero or negative.
1121 @param radius distance from center to edge
1125 SkPath& addCircle(SkScalar x, SkScalar y, SkScalar radius,
1159 @param rx x-axis radius of rounded corners on the SkRRect
1160 @param ry y-axis radius of rounded corners on the SkRRect
1172 @param radii array of 8 SkScalar values, a radius pair for each corner