Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1 | #Topic RRect |
| 2 | #Alias Round_Rect ## |
| 3 | #Alias RRect_Reference ## |
| 4 | |
| 5 | #Class SkRRect |
| 6 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 7 | SkRRect describes a rounded rectangle with a bounds and a pair of radii for each corner. |
Cary Clark | f960398 | 2018-07-17 08:20:27 -0400 | [diff] [blame] | 8 | The bounds and radii can be set so that SkRRect describes: a rectangle with sharp corners; |
| 9 | a Circle; an Oval; or a rectangle with one or more rounded corners. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 10 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 11 | SkRRect allows implementing CSS properties that describe rounded corners. |
| 12 | SkRRect may have up to eight different radii, one for each axis on each of its four |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 13 | corners. |
| 14 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 15 | SkRRect may modify the provided parameters when initializing bounds and radii. |
Cary Clark | f960398 | 2018-07-17 08:20:27 -0400 | [diff] [blame] | 16 | If either axis radii is zero or less: radii are stored as zero; corner is square. |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 17 | If corner curves overlap, radii are proportionally reduced to fit within bounds. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 18 | |
| 19 | #Subtopic Overview |
| 20 | #Populate |
| 21 | ## |
| 22 | |
| 23 | #Subtopic Constructor |
| 24 | #Populate |
| 25 | ## |
| 26 | |
| 27 | #Subtopic Operator |
| 28 | #Populate |
| 29 | ## |
| 30 | |
| 31 | #Subtopic Member_Function |
| 32 | #Populate |
| 33 | ## |
| 34 | |
| 35 | # ------------------------------------------------------------------------------ |
| 36 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 37 | #Method SkRRect() |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 38 | #In Constructor |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 39 | #Line # creates with zeroed bounds and corner radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 40 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 41 | Initializes bounds at (0, 0), the origin, with zero width and height. |
| 42 | Initializes corner radii to (0, 0), and sets type of kEmpty_Type. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 43 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 44 | #Return empty Round_Rect ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 45 | |
| 46 | #Example |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 47 | #Height 60 |
| 48 | SkRRect rrect;
|
| 49 | SkPaint p;
|
| 50 | p.setStyle(SkPaint::kStroke_Style);
|
| 51 | p.setStrokeWidth(10);
|
| 52 | canvas->drawRRect(rrect, p);
|
| 53 | rrect.setRect({10, 10, 100, 50});
|
| 54 | canvas->drawRRect(rrect, p);
|
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 55 | ## |
| 56 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 57 | #SeeAlso setEmpty isEmpty |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 58 | |
| 59 | #Method ## |
| 60 | |
| 61 | # ------------------------------------------------------------------------------ |
| 62 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 63 | #Method SkRRect(const SkRRect& rrect) |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 64 | #In Constructor |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 65 | #Line # copies bounds and corner radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 66 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 67 | Initializes to copy of rrect bounds and corner radii. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 68 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 69 | #Param rrect bounds and corner to copy ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 70 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 71 | #Return copy of rrect ## |
| 72 | |
| 73 | #Bug 8115 |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 74 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 75 | #Height 60 |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 76 | SkRRect rrect = SkRRect::MakeRect({10, 10, 100, 50});
|
| 77 | SkRRect rrect2(rrect);
|
| 78 | rrect2.inset(20, 20);
|
| 79 | SkPaint p;
|
| 80 | p.setStyle(SkPaint::kStroke_Style);
|
| 81 | p.setStrokeWidth(10);
|
| 82 | canvas->drawRRect(rrect, p);
|
| 83 | canvas->drawRRect(rrect2, p);
|
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 84 | ## |
| 85 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 86 | #SeeAlso operator=(const SkRRect& rrect) MakeRect |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 87 | |
| 88 | #Method ## |
| 89 | |
| 90 | # ------------------------------------------------------------------------------ |
| 91 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 92 | #Method SkRRect& operator=(const SkRRect& rrect) |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 93 | #In Operator |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 94 | #Line # copies bounds and corner radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 95 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 96 | Copies rrect bounds and corner radii. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 97 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 98 | #Param rrect bounds and corner to copy ## |
| 99 | |
| 100 | #Return copy of rrect ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 101 | |
| 102 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 103 | #Height 110 |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 104 | SkRRect rrect = SkRRect::MakeRect({40, 40, 100, 70});
|
| 105 | SkRRect rrect2 = rrect;
|
| 106 | rrect2.inset(-20, -20);
|
| 107 | SkPaint p;
|
| 108 | p.setStyle(SkPaint::kStroke_Style);
|
| 109 | p.setStrokeWidth(10);
|
| 110 | canvas->drawRRect(rrect, p);
|
| 111 | canvas->drawRRect(rrect2, p); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 112 | ## |
| 113 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 114 | #SeeAlso SkRRect(const SkRRect& rrect) MakeRect |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 115 | |
| 116 | #Method ## |
| 117 | |
| 118 | # ------------------------------------------------------------------------------ |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 119 | #Subtopic Type |
| 120 | #Line # specialization of Round_Rect geometry ## |
| 121 | |
| 122 | #PhraseDef list_of_rrect_types |
| 123 | kEmpty_Type, kRect_Type, kOval_Type, kSimple_Type, kNinePatch_Type, |
| 124 | kComplex_Type |
| 125 | ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 126 | |
| 127 | #Enum Type |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 128 | #Line # specialization of Round_Rect geometry ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 129 | |
| 130 | #Code |
| 131 | enum Type { |
| 132 | kEmpty_Type, |
| 133 | kRect_Type, |
| 134 | kOval_Type, |
| 135 | kSimple_Type, |
| 136 | kNinePatch_Type, |
| 137 | kComplex_Type, |
| 138 | kLastType = kComplex_Type, |
| 139 | }; |
| 140 | ## |
| 141 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 142 | Type describes possible specializations of Round_Rect. Each Type is |
| 143 | exclusive; a Round_Rect may only have one type. |
| 144 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 145 | Type members become progressively less restrictive; larger values of |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 146 | Type have more degrees of freedom than smaller values. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 147 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 148 | #Const kEmpty_Type 0 |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 149 | #Line # zero width or height ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 150 | Round_Rect has zero width or height. All radii are zero. |
| 151 | ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 152 | #Const kRect_Type 1 |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 153 | #Line # non-zero width and height, and zeroed radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 154 | Round_Rect has width and height. All radii are zero. |
| 155 | ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 156 | #Const kOval_Type 2 |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 157 | #Line # non-zero width and height filled with radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 158 | Round_Rect has width and height. All four x-radii are equal, |
| 159 | and at least half the width. All four y-radii are equal, |
| 160 | and at least half the height. |
| 161 | ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 162 | #Const kSimple_Type 3 |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 163 | #Line # non-zero width and height with equal radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 164 | Round_Rect has width and height. All four x-radii are equal and |
| 165 | greater than zero, and all four y-radii are equal and greater than |
| 166 | zero. Either x-radii are less than half the width, or y-radii is |
| 167 | less than half the height, or both. |
| 168 | ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 169 | #Const kNinePatch_Type 4 |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 170 | #Line # non-zero width and height with axis-aligned radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 171 | Round_Rect has width and height. Left x-radii are equal, top |
| 172 | y-radii are equal, right x-radii are equal, and bottom y-radii |
Cary Clark | f960398 | 2018-07-17 08:20:27 -0400 | [diff] [blame] | 173 | are equal. The radii do not describe Rect, Oval, or simple type. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 174 | |
| 175 | The centers of the corner ellipses form an axis-aligned rectangle |
| 176 | that divides the Round_Rect into nine rectangular patches; an |
| 177 | interior rectangle, four edges, and four corners. |
| 178 | ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 179 | #Const kComplex_Type 5 |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 180 | #Line # non-zero width and height with arbitrary radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 181 | both radii are non-zero. |
| 182 | ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 183 | #Const kLastType 5 |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 184 | #Line # largest Type value ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 185 | ## |
| 186 | |
| 187 | #Example |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 188 | #Height 128 |
| 189 | struct Radii { SkVector data[4]; };
|
| 190 | auto drawRRectType = [=](const SkRect& rect, const Radii& radii) {
|
| 191 | SkRRect rrect;
|
| 192 | rrect.setRectRadii(rect, radii.data);
|
| 193 | SkPaint paint;
|
| 194 | paint.setAntiAlias(true);
|
| 195 | const char* typeStr[] = { "empty", "rect", "oval", "simple", "nine patch", "complex" };
|
| 196 | paint.setTextAlign(SkPaint::kCenter_Align);
|
| 197 | canvas->drawString(typeStr[(int) rrect.type()], rect.centerX(), rect.bottom() + 20, paint);
|
| 198 | paint.setStyle(SkPaint::kStroke_Style);
|
| 199 | canvas->drawRRect(rrect, paint);
|
| 200 | };
|
| 201 | drawRRectType({ 45, 30, 45, 30}, {{{ 5, 5}, { 5, 5}, { 5, 5}, { 5, 5}}});
|
| 202 | drawRRectType({ 90, 10, 140, 30}, {{{ 0, 0}, { 0, 0}, { 0, 0}, { 0, 0}}});
|
| 203 | drawRRectType({160, 10, 210, 30}, {{{25, 10}, {25, 10}, {25, 10}, {25, 10}}});
|
| 204 | drawRRectType({ 20, 80, 70, 100}, {{{ 5, 5}, { 5, 5}, { 5, 5}, { 5, 5}}});
|
| 205 | drawRRectType({ 90, 80, 140, 100}, {{{ 5, 5}, {10, 5}, {10, 5}, { 5, 5}}});
|
| 206 | drawRRectType({160, 80, 210, 100}, {{{ 5, 5}, {10, 5}, { 5, 5}, { 5, 5}}}); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 207 | ## |
| 208 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 209 | #SeeAlso Rect Path |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 210 | |
| 211 | #Enum ## |
| 212 | |
| 213 | # ------------------------------------------------------------------------------ |
| 214 | |
| 215 | #Method Type getType() const |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 216 | #In Property |
| 217 | #Line # returns Type ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 218 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 219 | Returns Type, one of: #list_of_rrect_types#. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 220 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 221 | #Return Type ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 222 | |
| 223 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 224 | #Height 100 |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 225 | #Description |
| 226 | rrect2 is not a Rect; inset() has made it empty. |
| 227 | ## |
| 228 | SkRRect rrect = SkRRect::MakeRect({10, 10, 100, 50});
|
| 229 | SkRRect rrect2(rrect);
|
| 230 | rrect2.inset(20, 20);
|
| 231 | SkPaint p;
|
| 232 | p.setStyle(SkPaint::kStroke_Style);
|
| 233 | p.setStrokeWidth(10);
|
| 234 | std::string str("Type ");
|
| 235 | str += SkRRect::kRect_Type == rrect2.getType() ? "=" : "!";
|
| 236 | str += "= SkRRect::kRect_Type";
|
| 237 | canvas->drawString(str.c_str(), 20, 80, SkPaint());
|
| 238 | canvas->drawRRect(rrect2, p); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 239 | ## |
| 240 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 241 | #SeeAlso Type type |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 242 | |
| 243 | #Method ## |
| 244 | |
| 245 | # ------------------------------------------------------------------------------ |
| 246 | |
| 247 | #Method Type type() const |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 248 | #In Property |
| 249 | #Line # returns Type ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 250 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 251 | Returns Type, one of: #list_of_rrect_types#. |
| 252 | |
| 253 | #Return Type ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 254 | |
| 255 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 256 | #Height 100 |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 257 | #Description |
| 258 | inset() has made rrect2 empty. |
| 259 | ## |
| 260 | SkRRect rrect = SkRRect::MakeRect({10, 10, 100, 50});
|
| 261 | SkRRect rrect2(rrect);
|
| 262 | rrect2.inset(20, 20);
|
| 263 | SkPaint p;
|
| 264 | p.setStyle(SkPaint::kStroke_Style);
|
| 265 | p.setStrokeWidth(10);
|
| 266 | std::string str("Type ");
|
| 267 | str += SkRRect::kEmpty_Type == rrect2.type() ? "=" : "!";
|
| 268 | str += "= SkRRect::kEmpty_Type";
|
| 269 | canvas->drawString(str.c_str(), 20, 80, SkPaint());
|
| 270 | canvas->drawRRect(rrect2, p); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 271 | ## |
| 272 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 273 | #SeeAlso Type getType |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 274 | |
| 275 | #Method ## |
| 276 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 277 | #Subtopic Type ## |
| 278 | |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 279 | # ------------------------------------------------------------------------------ |
| 280 | |
| 281 | #Method inline bool isEmpty() const |
| 282 | #In Property |
| 283 | #Line # returns true if width or height are zero ## |
| 284 | Returns true if rect().fLeft is equal to rect().fRight, or if rect().fTop is equal |
| 285 | to rect().fBottom. |
| 286 | |
| 287 | #Return true if width() or height() are zero ## |
| 288 | |
| 289 | #Example |
| 290 | #Height 100 |
| 291 | SkPaint paint;
|
| 292 | paint.setAntiAlias(true);
|
| 293 | paint.setTextAlign(SkPaint::kCenter_Align);
|
| 294 | paint.setTextSize(16);
|
| 295 | SkRRect rrect = SkRRect::MakeRectXY({30, 10, 100, 60}, 10, 5);
|
| 296 | canvas->drawRRect(rrect, paint);
|
| 297 | canvas->drawString(rrect.isEmpty() ? "empty" : "not empty", 64, 90, paint);
|
| 298 | rrect.inset(40, 0);
|
| 299 | canvas->translate(128, 0);
|
| 300 | canvas->drawRRect(rrect, paint);
|
| 301 | canvas->drawString(rrect.isEmpty() ? "empty" : "not empty", 64, 90, paint); |
| 302 | ## |
| 303 | |
| 304 | #SeeAlso SkRect::isEmpty height width |
| 305 | |
| 306 | #Method ## |
| 307 | |
| 308 | # ------------------------------------------------------------------------------ |
| 309 | |
| 310 | #Method inline bool isRect() const |
| 311 | #In Property |
| 312 | #Line # returns true if not empty, and one radius at each corner is zero ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 313 | Returns true if not empty, and if either x-axis or y-axis radius at each corner |
| 314 | is zero. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 315 | |
| 316 | #Return true if not empty, and one radius at each corner is zero ## |
| 317 | |
| 318 | #Example |
| 319 | #Height 100 |
| 320 | SkPaint paint;
|
| 321 | paint.setAntiAlias(true);
|
| 322 | paint.setTextAlign(SkPaint::kCenter_Align);
|
| 323 | paint.setTextSize(16);
|
| 324 | SkRRect rrect = SkRRect::MakeRect({30, 10, 100, 60});
|
| 325 | canvas->drawRRect(rrect, paint);
|
| 326 | canvas->drawString(rrect.isRect() ? "rect" : "not rect", 64, 90, paint);
|
| 327 | SkVector radii[] = {{10, 10}, {0, 0}, {0, 0}, {0, 0}};
|
| 328 | rrect.setRectRadii(rrect.getBounds(), radii);
|
| 329 | canvas->translate(128, 0);
|
| 330 | canvas->drawRRect(rrect, paint);
|
| 331 | canvas->drawString(rrect.isRect() ? "rect" : "not rect", 64, 90, paint); |
| 332 | ## |
| 333 | |
| 334 | #SeeAlso isEmpty radii |
| 335 | |
| 336 | #Method ## |
| 337 | |
| 338 | # ------------------------------------------------------------------------------ |
| 339 | |
| 340 | #Method inline bool isOval() const |
| 341 | #In Property |
| 342 | #Line # returns true if not empty, axes radii are equal, radii fill bounds ## |
| 343 | Returns true if not empty, if all x-axis radii are equal, if all y-axis radii |
| 344 | are equal, x-axis radii are at least half the width, and y-axis radii are at |
| 345 | least half the height. |
| 346 | |
| 347 | #Return true if has identical geometry to Oval ## |
| 348 | |
| 349 | #Example |
| 350 | #Height 100 |
| 351 | #Description |
| 352 | The first radii are scaled down proportionately until both x-axis and y-axis fit |
| 353 | within the bounds. After scaling, x-axis radius is smaller than half the width; |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 354 | left Round_Rect is not an oval. The second radii are equal to half the |
| 355 | dimensions; right Round_Rect is an oval. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 356 | ## |
| 357 | SkPaint paint;
|
| 358 | paint.setAntiAlias(true);
|
| 359 | paint.setTextAlign(SkPaint::kCenter_Align);
|
| 360 | paint.setTextSize(16);
|
| 361 | SkRRect rrect = SkRRect::MakeRectXY({30, 10, 100, 60}, 40, 30);
|
| 362 | canvas->drawRRect(rrect, paint);
|
| 363 | canvas->drawString(rrect.isOval() ? "oval" : "not oval", 64, 90, paint);
|
| 364 | rrect.setRectXY(rrect.getBounds(), 35, 25);
|
| 365 | canvas->translate(128, 0);
|
| 366 | canvas->drawRRect(rrect, paint);
|
| 367 | canvas->drawString(rrect.isOval() ? "oval" : "not oval", 64, 90, paint); |
| 368 | ## |
| 369 | |
| 370 | #SeeAlso isEmpty isSimple SkCanvas::drawOval |
| 371 | |
| 372 | #Method ## |
| 373 | |
| 374 | # ------------------------------------------------------------------------------ |
| 375 | |
| 376 | #Method inline bool isSimple() const |
| 377 | #In Property |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 378 | #Line # returns true if not empty, Rect or Oval; and axes radii are equal ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 379 | Returns true if not empty, if all x-axis radii are equal but not zero, |
| 380 | if all y-axis radii are equal but not zero; and x-axis radius is less than half |
| 381 | width(), or y-axis radius is less than half height(). |
| 382 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 383 | #Return true if not empty, Rect or Oval; and axes radii are equal ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 384 | |
| 385 | #Bug 8107 |
| 386 | #Example |
| 387 | #Height 100 |
| 388 | SkPaint paint;
|
| 389 | paint.setAntiAlias(true);
|
| 390 | paint.setTextAlign(SkPaint::kCenter_Align);
|
| 391 | paint.setTextSize(16);
|
| 392 | SkVector radii[] = {{40, 30}, {40, 30}, {40, 30}, {40, 30}};
|
| 393 | SkRRect rrect;
|
| 394 | rrect.setRectRadii({30, 10, 100, 60}, radii);
|
| 395 | canvas->drawRRect(rrect, paint);
|
| 396 | canvas->drawString(rrect.isSimple() ? "simple" : "not simple", 64, 90, paint);
|
| 397 | radii[0].fX = 35;
|
| 398 | rrect.setRectRadii(rrect.getBounds(), radii);
|
| 399 | canvas->translate(128, 0);
|
| 400 | canvas->drawRRect(rrect, paint);
|
| 401 | canvas->drawString(rrect.isSimple() ? "simple" : "not simple", 64, 90, paint); |
| 402 | ## |
| 403 | |
| 404 | #SeeAlso isEmpty isRect isOval isNinePatch |
| 405 | |
| 406 | #Method ## |
| 407 | |
| 408 | # ------------------------------------------------------------------------------ |
| 409 | |
| 410 | #Method inline bool isNinePatch() const |
| 411 | #In Property |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 412 | #Line # returns true if not empty, Rect, Oval or simple; and radii are axis-aligned ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 413 | Returns true if isEmpty, isRect, isOval, and isSimple return false; and if |
| 414 | left x-axis radii are equal, right x-axis radii are equal, top y-axis radii are |
| 415 | equal, and bottom y-axis radii are equal. |
| 416 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 417 | #Return true if not empty, Rect, Oval or simple; and radii are axis-aligned ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 418 | |
| 419 | #Bug 8107 |
| 420 | #Example |
| 421 | #Height 100 |
| 422 | SkPaint paint;
|
| 423 | paint.setAntiAlias(true);
|
| 424 | paint.setTextAlign(SkPaint::kCenter_Align);
|
| 425 | paint.setTextSize(16);
|
| 426 | SkVector radii[] = {{20, 30}, {40, 30}, {40, 30}, {20, 30}};
|
| 427 | SkRRect rrect;
|
| 428 | rrect.setRectRadii({30, 10, 100, 60}, radii);
|
| 429 | canvas->drawRRect(rrect, paint);
|
| 430 | canvas->drawString(rrect.isNinePatch() ? "9 patch" : "not 9 patch", 64, 90, paint);
|
| 431 | radii[0].fX = 35;
|
| 432 | rrect.setRectRadii(rrect.getBounds(), radii);
|
| 433 | canvas->translate(128, 0);
|
| 434 | canvas->drawRRect(rrect, paint);
|
| 435 | canvas->drawString(rrect.isNinePatch() ? "9 patch" : "not 9 patch", 64, 90, paint); |
| 436 | ## |
| 437 | |
| 438 | #SeeAlso isEmpty isRect isOval isSimple isComplex |
| 439 | |
| 440 | #Method ## |
| 441 | |
| 442 | # ------------------------------------------------------------------------------ |
| 443 | |
| 444 | #Method inline bool isComplex() const |
| 445 | #In Property |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 446 | #Line # returns true if not empty, Rect, Oval, simple, or nine-patch ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 447 | |
| 448 | Returns true if isEmpty, isRect, isOval, isSimple, and isNinePatch return false. |
| 449 | If true: width and height are greater than zero, at least one corner radii are |
| 450 | both greater than zero; left x-axis radii are not equal, or right x-axis radii |
| 451 | are not equal, or top y-axis radii are not equal, or bottom y-axis radii are not |
| 452 | equal. |
| 453 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 454 | #Return true if not empty, Rect, Oval, simple, or nine-patch ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 455 | |
| 456 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 457 | #Height 100 |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 458 | SkPaint paint;
|
| 459 | paint.setAntiAlias(true);
|
| 460 | paint.setTextAlign(SkPaint::kCenter_Align);
|
| 461 | paint.setTextSize(16);
|
| 462 | SkVector radii[] = {{25, 30}, {40, 30}, {40, 30}, {20, 30}};
|
| 463 | SkRRect rrect;
|
| 464 | rrect.setRectRadii({30, 10, 100, 60}, radii);
|
| 465 | canvas->drawRRect(rrect, paint);
|
| 466 | canvas->drawString(rrect.isComplex() ? "complex" : "not complex", 64, 90, paint);
|
| 467 | radii[0].fX = 20;
|
| 468 | rrect.setRectRadii(rrect.getBounds(), radii);
|
| 469 | canvas->translate(128, 0);
|
| 470 | canvas->drawRRect(rrect, paint);
|
| 471 | canvas->drawString(rrect.isComplex() ? "complex" : "not complex", 64, 90, paint); |
| 472 | ## |
| 473 | |
| 474 | #SeeAlso isEmpty isRect isOval isSimple isNinePatch |
| 475 | |
| 476 | #Method ## |
| 477 | |
| 478 | # ------------------------------------------------------------------------------ |
| 479 | |
| 480 | #Method SkScalar width() const |
| 481 | #In Property |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 482 | #Line # returns span in x-axis ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 483 | Returns span on the x-axis. This does not check if result fits in 32-bit float; |
| 484 | result may be infinity. |
| 485 | |
| 486 | #Return bounds().fRight minus bounds().fLeft ## |
| 487 | |
| 488 | #Example |
| 489 | #Description |
| 490 | SkRRect::MakeRect sorts its input, so width() is always zero or larger. |
| 491 | ## |
| 492 | SkRRect unsorted = SkRRect::MakeRect({ 15, 25, 10, 5 });
|
| 493 | SkDebugf("unsorted width: %g\n", unsorted.width());
|
| 494 | SkRRect large = SkRRect::MakeRect({ -FLT_MAX, 1, FLT_MAX, 2 });
|
| 495 | SkDebugf("large width: %.0f\n", large.width()); |
| 496 | #StdOut |
| 497 | unsorted width: 5
|
| 498 | large width: inf |
| 499 | ## |
| 500 | ## |
| 501 | |
| 502 | #SeeAlso SkRect::width height getBounds |
| 503 | |
| 504 | #Method ## |
| 505 | |
| 506 | # ------------------------------------------------------------------------------ |
| 507 | |
| 508 | #Method SkScalar height() const |
| 509 | #In Property |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 510 | #Line # returns span in y-axis ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 511 | Returns span on the y-axis. This does not check if result fits in 32-bit float; |
| 512 | result may be infinity. |
| 513 | |
| 514 | #Return bounds().fBottom minus bounds().fTop ## |
| 515 | |
| 516 | #Example |
| 517 | #Description |
| 518 | SkRRect::MakeRect sorts its input, so height() is always zero or larger. |
| 519 | ## |
| 520 | SkRRect unsorted = SkRRect::MakeRect({ 15, 25, 10, 20 }); |
| 521 | SkDebugf("unsorted height: %g\n", unsorted.height()); |
| 522 | SkRRect large = SkRRect::MakeRect({ 1, -FLT_MAX, 2, FLT_MAX }); |
| 523 | SkDebugf("large height: %.0f\n", large.height()); |
| 524 | #StdOut |
| 525 | unsorted height: 5
|
| 526 | large height: inf |
| 527 | ## |
| 528 | ## |
| 529 | |
| 530 | #SeeAlso SkRect.height width getBounds |
| 531 | |
| 532 | #Method ## |
| 533 | |
| 534 | # ------------------------------------------------------------------------------ |
| 535 | |
| 536 | #Method SkVector getSimpleRadii() const |
| 537 | #In Property |
| 538 | #Line # returns corner radii for simple types ## |
| 539 | |
Cary Clark | d2ca79c | 2018-08-10 13:09:13 -0400 | [diff] [blame] | 540 | Returns top-left corner radii. If type() returns kEmpty_Type, kRect_Type, |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 541 | kOval_Type, or kSimple_Type, returns a value representative of all corner radii. |
| 542 | If type() returns kNinePatch_Type or kComplex_Type, at least one of the |
| 543 | remaining three corners has a different value. |
| 544 | |
| 545 | #Return corner radii for simple types ## |
| 546 | |
| 547 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 548 | #Height 100 |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 549 | auto drawDetails = [=](const SkRRect& rrect) {
|
| 550 | SkPaint paint;
|
| 551 | paint.setAntiAlias(true);
|
| 552 | paint.setTextAlign(SkPaint::kCenter_Align);
|
| 553 | paint.setTextSize(12);
|
| 554 | canvas->drawRRect(rrect, paint);
|
| 555 | SkVector corner = rrect.getSimpleRadii();
|
| 556 | std::string label = "corner: " + std::to_string(corner.fX).substr(0, 3) + ", " +
|
| 557 | std::to_string(corner.fY).substr(0, 3);
|
| 558 | canvas->drawString(label.c_str(), 64, 90, paint);
|
| 559 | canvas->translate(128, 0);
|
| 560 | };
|
| 561 | SkRRect rrect = SkRRect::MakeRect({30, 10, 100, 60});
|
| 562 | drawDetails(rrect);
|
| 563 | rrect.setRectXY(rrect.getBounds(), 5, 8);
|
| 564 | drawDetails(rrect);
|
| 565 | ## |
| 566 | |
| 567 | #SeeAlso radii getBounds getType isSimple |
| 568 | |
| 569 | #Method ## |
| 570 | |
| 571 | # ------------------------------------------------------------------------------ |
| 572 | |
| 573 | #Method void setEmpty() |
| 574 | #In Set |
| 575 | #Line # zeroes width, height, and corner radii ## |
| 576 | |
| 577 | Sets bounds to zero width and height at (0, 0), the origin. Sets |
| 578 | corner radii to zero and sets type to kEmpty_Type. |
| 579 | |
| 580 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 581 | #Height 80 |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 582 | #Description |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 583 | Nothing blue is drawn because Round_Rect is set to empty. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 584 | ## |
| 585 | SkPaint paint;
|
| 586 | SkRRect rrect = SkRRect::MakeRect({30, 10, 100, 60});
|
| 587 | canvas->drawRRect(rrect, paint);
|
| 588 | rrect.setEmpty();
|
| 589 | paint.setColor(SK_ColorBLUE);
|
| 590 | canvas->drawRRect(rrect, paint); |
| 591 | ## |
| 592 | |
| 593 | #SeeAlso MakeEmpty setRect |
| 594 | |
| 595 | #Method ## |
| 596 | |
| 597 | # ------------------------------------------------------------------------------ |
| 598 | |
| 599 | #Method void setRect(const SkRect& rect) |
| 600 | #In Set |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 601 | #Line # sets Round_Rect bounds with zeroed corners ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 602 | |
| 603 | Sets bounds to sorted rect, and sets corner radii to zero. |
| 604 | If set bounds has width and height, and sets type to kRect_Type; |
| 605 | otherwise, sets type to kEmpty_Type. |
| 606 | |
| 607 | #Param rect bounds to set ## |
| 608 | |
| 609 | #Example |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 610 | #Height 90 |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 611 | SkPaint paint;
|
| 612 | SkRRect rrect = SkRRect::MakeRect({30, 10, 100, 60});
|
| 613 | canvas->drawRRect(rrect, paint);
|
| 614 | rrect.setRect({60, 30, 120, 80});
|
| 615 | paint.setColor(SK_ColorBLUE);
|
| 616 | canvas->drawRRect(rrect, paint); |
| 617 | ## |
| 618 | |
| 619 | #SeeAlso MakeRect setRectXY |
| 620 | |
| 621 | #Method ## |
| 622 | |
| 623 | # ------------------------------------------------------------------------------ |
| 624 | |
| 625 | #Method static SkRRect MakeEmpty() |
| 626 | #In Constructor |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 627 | #Line # creates with zeroed bounds and corner radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 628 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 629 | Initializes bounds at (0, 0), the origin, with zero width and height. |
| 630 | Initializes corner radii to (0, 0), and sets type of kEmpty_Type. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 631 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 632 | #Return empty Round_Rect ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 633 | |
| 634 | #Example |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 635 | #Height 90 |
| 636 | SkRRect rrect = SkRRect::MakeEmpty();
|
| 637 | SkRRect rrect2(rrect);
|
| 638 | rrect2.inset(-20, -20);
|
| 639 | SkPaint p;
|
| 640 | p.setStyle(SkPaint::kStroke_Style);
|
| 641 | p.setStrokeWidth(10);
|
| 642 | std::string str("Type ");
|
| 643 | str += SkRRect::kEmpty_Type == rrect2.type() ? "=" : "!";
|
| 644 | str += "= SkRRect::kEmpty_Type";
|
| 645 | canvas->drawString(str.c_str(), 20, 80, SkPaint());
|
| 646 | canvas->drawRRect(rrect2, p); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 647 | ## |
| 648 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 649 | #SeeAlso SkRRect() SkRect::MakeEmpty |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 650 | |
| 651 | #Method ## |
| 652 | |
| 653 | # ------------------------------------------------------------------------------ |
| 654 | |
| 655 | #Method static SkRRect MakeRect(const SkRect& r) |
| 656 | #In Constructor |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 657 | #Line # copies bounds and zeroes corner radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 658 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 659 | Initializes to copy of r bounds and zeroes corner radii. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 660 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 661 | #Param r bounds to copy ## |
| 662 | |
| 663 | #Return copy of r ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 664 | |
| 665 | #Example |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 666 | #Height 70 |
| 667 | SkPaint paint;
|
| 668 | SkRRect rrect = SkRRect::MakeRect({30, 10, 100, 60});
|
| 669 | canvas->drawRRect(rrect, paint);
|
| 670 | rrect.setOval(rrect.getBounds());
|
| 671 | paint.setColor(SK_ColorBLUE);
|
| 672 | canvas->drawRRect(rrect, paint); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 673 | ## |
| 674 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 675 | #SeeAlso setRect MakeOval MakeRectXY |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 676 | |
| 677 | #Method ## |
| 678 | |
| 679 | # ------------------------------------------------------------------------------ |
| 680 | |
| 681 | #Method static SkRRect MakeOval(const SkRect& oval) |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 682 | #In Constructor |
| 683 | #Line # creates Oval to fit bounds ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 684 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 685 | Sets bounds to oval, x-axis radii to half oval.width(), and all y-axis radii |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 686 | to half oval.height(). If oval bounds is empty, sets to kEmpty_Type. |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 687 | Otherwise, sets to kOval_Type. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 688 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 689 | #Param oval bounds of Oval ## |
| 690 | |
| 691 | #Return Oval ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 692 | |
| 693 | #Example |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 694 | #Height 70 |
| 695 | SkPaint paint;
|
| 696 | SkRRect rrect = SkRRect::MakeOval({30, 10, 100, 60});
|
| 697 | canvas->drawRRect(rrect, paint);
|
| 698 | rrect.setRect(rrect.getBounds());
|
| 699 | paint.setColor(SK_ColorBLUE);
|
| 700 | paint.setBlendMode(SkBlendMode::kDifference);
|
| 701 | canvas->drawRRect(rrect, paint); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 702 | ## |
| 703 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 704 | #SeeAlso setOval MakeRect MakeRectXY |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 705 | |
| 706 | #Method ## |
| 707 | |
| 708 | # ------------------------------------------------------------------------------ |
| 709 | |
| 710 | #Method static SkRRect MakeRectXY(const SkRect& rect, SkScalar xRad, SkScalar yRad) |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 711 | #In Constructor |
| 712 | #Line # creates rounded rectangle ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 713 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 714 | Sets to rounded rectangle with the same radii for all four corners. |
| 715 | If rect is empty, sets to kEmpty_Type. |
| 716 | Otherwise, if xRad and yRad are zero, sets to kRect_Type. |
| 717 | Otherwise, if xRad is at least half rect.width() and yRad is at least half |
| 718 | rect.height(), sets to kOval_Type. |
| 719 | Otherwise, sets to kSimple_Type. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 720 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 721 | #Param rect bounds of rounded rectangle ## |
| 722 | #Param xRad x-axis radius of corners ## |
| 723 | #Param yRad y-axis radius of corners ## |
| 724 | |
| 725 | #Return rounded rectangle ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 726 | |
| 727 | #Example |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 728 | #Height 70 |
| 729 | SkPaint paint;
|
| 730 | SkRRect rrect = SkRRect::MakeRectXY({30, 10, 100, 60}, 20, 20);
|
| 731 | canvas->drawRRect(rrect, paint);
|
| 732 | rrect.setRect(rrect.getBounds());
|
| 733 | paint.setColor(SK_ColorBLUE);
|
| 734 | paint.setBlendMode(SkBlendMode::kModulate);
|
| 735 | canvas->drawRRect(rrect, paint); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 736 | ## |
| 737 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 738 | #SeeAlso setRectXY |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 739 | |
| 740 | #Method ## |
| 741 | |
| 742 | # ------------------------------------------------------------------------------ |
| 743 | |
| 744 | #Method void setOval(const SkRect& oval) |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 745 | #In Set |
| 746 | #Line # replaces with Oval to fit bounds ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 747 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 748 | Sets bounds to oval, x-axis radii to half oval.width(), and all y-axis radii |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 749 | to half oval.height(). If oval bounds is empty, sets to kEmpty_Type. |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 750 | Otherwise, sets to kOval_Type. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 751 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 752 | #Param oval bounds of Oval ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 753 | |
| 754 | #Example |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 755 | #Height 70 |
| 756 | SkPaint paint;
|
| 757 | SkRRect rrect = SkRRect::MakeRectXY({30, 10, 100, 60}, 20, 20);
|
| 758 | canvas->drawRRect(rrect, paint);
|
| 759 | rrect.setOval(rrect.getBounds());
|
| 760 | paint.setColor(SK_ColorWHITE);
|
| 761 | paint.setBlendMode(SkBlendMode::kExclusion);
|
| 762 | canvas->drawRRect(rrect, paint); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 763 | ## |
| 764 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 765 | #SeeAlso MakeOval |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 766 | |
| 767 | #Method ## |
| 768 | |
| 769 | # ------------------------------------------------------------------------------ |
| 770 | |
| 771 | #Method void setRectXY(const SkRect& rect, SkScalar xRad, SkScalar yRad) |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 772 | #In Set |
| 773 | #Line # replaces with rounded rectangle ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 774 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 775 | Sets to rounded rectangle with the same radii for all four corners. |
| 776 | If rect is empty, sets to kEmpty_Type. |
| 777 | Otherwise, if xRad or yRad is zero, sets to kRect_Type. |
| 778 | Otherwise, if xRad is at least half rect.width() and yRad is at least half |
| 779 | rect.height(), sets to kOval_Type. |
| 780 | Otherwise, sets to kSimple_Type. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 781 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 782 | #Param rect bounds of rounded rectangle ## |
| 783 | #Param xRad x-axis radius of corners ## |
| 784 | #Param yRad y-axis radius of corners ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 785 | |
| 786 | #Example |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 787 | #Height 70 |
| 788 | SkPaint paint;
|
| 789 | SkRRect rrect = SkRRect::MakeRectXY({30, 10, 100, 60}, 20, 20);
|
| 790 | canvas->drawRRect(rrect, paint);
|
| 791 | rrect.setRectXY(rrect.getBounds(), 5, 5);
|
| 792 | paint.setColor(SK_ColorWHITE);
|
| 793 | paint.setBlendMode(SkBlendMode::kExclusion);
|
| 794 | canvas->drawRRect(rrect, paint); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 795 | ## |
| 796 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 797 | #SeeAlso MakeRectXY SkPath::addRoundRect |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 798 | |
| 799 | #Method ## |
| 800 | |
| 801 | # ------------------------------------------------------------------------------ |
| 802 | |
| 803 | #Method void setNinePatch(const SkRect& rect, SkScalar leftRad, SkScalar topRad, |
| 804 | SkScalar rightRad, SkScalar bottomRad) |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 805 | #In Set |
| 806 | #Line # replaces with rounded rectangle ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 807 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 808 | Sets bounds to rect. Sets radii to (leftRad, topRad), (rightRad, topRad), |
| 809 | (rightRad, bottomRad), (leftRad, bottomRad). |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 810 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 811 | If rect is empty, sets to kEmpty_Type. |
| 812 | Otherwise, if leftRad and rightRad are zero, sets to kRect_Type. |
| 813 | Otherwise, if topRad and bottomRad are zero, sets to kRect_Type. |
| 814 | Otherwise, if leftRad and rightRad are equal and at least half rect.width(), and |
| 815 | topRad and bottomRad are equal at least half rect.height(), sets to kOval_Type. |
| 816 | Otherwise, if leftRad and rightRad are equal, and topRad and bottomRad are equal, |
| 817 | sets to kSimple_Type. Otherwise, sets to kNinePatch_Type. |
| 818 | |
| 819 | Nine patch refers to the nine parts defined by the radii: one center rectangle, |
| 820 | four edge patches, and four corner patches. |
| 821 | |
| 822 | #Param rect bounds of rounded rectangle ## |
| 823 | #Param leftRad left-top and left-bottom x-axis radius ## |
| 824 | #Param topRad left-top and right-top y-axis radius ## |
| 825 | #Param rightRad right-top and right-bottom x-axis radius ## |
| 826 | #Param bottomRad left-bottom and right-bottom y-axis radius ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 827 | |
| 828 | #Example |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 829 | #Height 70 |
| 830 | SkPaint paint;
|
| 831 | paint.setAntiAlias(true);
|
| 832 | SkRRect rrect;
|
| 833 | rrect.setNinePatch({30, 10, 100, 60}, 10, 20, 20, 10);
|
| 834 | canvas->drawRRect(rrect, paint);
|
| 835 | paint.setColor(SK_ColorWHITE);
|
| 836 | const SkRect r = rrect.getBounds();
|
| 837 | canvas->drawLine(r.fLeft, r.fTop + rrect.radii(SkRRect::kUpperLeft_Corner).fY,
|
| 838 | r.fRight, r.fTop + rrect.radii(SkRRect::kUpperRight_Corner).fY, paint);
|
| 839 | canvas->drawLine(r.fLeft, r.fBottom - rrect.radii(SkRRect::kLowerLeft_Corner).fY,
|
| 840 | r.fRight, r.fBottom - rrect.radii(SkRRect::kLowerRight_Corner).fY, paint);
|
| 841 | canvas->drawLine(r.fLeft + rrect.radii(SkRRect::kUpperLeft_Corner).fX, r.fTop,
|
| 842 | r.fLeft + rrect.radii(SkRRect::kLowerLeft_Corner).fX, r.fBottom, paint);
|
| 843 | canvas->drawLine(r.fRight - rrect.radii(SkRRect::kUpperRight_Corner).fX, r.fTop,
|
| 844 | r.fRight - rrect.radii(SkRRect::kLowerRight_Corner).fX, r.fBottom, paint); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 845 | ## |
| 846 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 847 | #SeeAlso setRectRadii |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 848 | |
| 849 | #Method ## |
| 850 | |
| 851 | # ------------------------------------------------------------------------------ |
| 852 | |
| 853 | #Method void setRectRadii(const SkRect& rect, const SkVector radii[4]) |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 854 | #In Set |
| 855 | #Line # replaces with rounded rectangle ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 856 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 857 | Sets bounds to rect. Sets radii array for individual control of all for corners. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 858 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 859 | If rect is empty, sets to kEmpty_Type. |
| 860 | Otherwise, if one of each corner radii are zero, sets to kRect_Type. |
| 861 | Otherwise, if all x-axis radii are equal and at least half rect.width(), and |
| 862 | all y-axis radii are equal at least half rect.height(), sets to kOval_Type. |
| 863 | Otherwise, if all x-axis radii are equal, and all y-axis radii are equal, |
| 864 | sets to kSimple_Type. Otherwise, sets to kNinePatch_Type. |
| 865 | |
| 866 | #Param rect bounds of rounded rectangle ## |
| 867 | #Param radii corner x-axis and y-axis radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 868 | |
| 869 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 870 | #Height 128 |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 871 | SkPaint paint;
|
| 872 | paint.setStrokeWidth(15);
|
| 873 | paint.setStrokeCap(SkPaint::kSquare_Cap);
|
| 874 | paint.setAntiAlias(true);
|
| 875 | float intervals[] = { 5, 21.75f };
|
| 876 | paint.setStyle(SkPaint::kStroke_Style);
|
| 877 | paint.setPathEffect(SkDashPathEffect::Make(intervals, SK_ARRAY_COUNT(intervals), 0));
|
| 878 | SkPath path;
|
| 879 | SkRRect rrect;
|
| 880 | SkVector corners[] = {{15, 17}, {17, 19}, {19, 15}, {15, 15}};
|
| 881 | rrect.setRectRadii({20, 20, 100, 100}, corners);
|
| 882 | path.addRRect(rrect, SkPath::kCW_Direction);
|
| 883 | canvas->drawPath(path, paint);
|
| 884 | path.rewind();
|
| 885 | path.addRRect(rrect, SkPath::kCCW_Direction, 1);
|
| 886 | canvas->translate(120, 0);
|
| 887 | canvas->drawPath(path, paint); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 888 | ## |
| 889 | |
Cary Clark | 82f1f74 | 2018-06-28 08:50:35 -0400 | [diff] [blame] | 890 | #SeeAlso setNinePatch SkPath::addRoundRect |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 891 | |
| 892 | #Method ## |
| 893 | |
| 894 | # ------------------------------------------------------------------------------ |
| 895 | |
| 896 | #Enum Corner |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 897 | #Line # corner radii order ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 898 | |
| 899 | #Code |
| 900 | enum Corner { |
| 901 | kUpperLeft_Corner, |
| 902 | kUpperRight_Corner, |
| 903 | kLowerRight_Corner, |
| 904 | kLowerLeft_Corner, |
| 905 | }; |
| 906 | ## |
| 907 | |
| 908 | The radii are stored: top-left, top-right, bottom-right, bottom-left. |
| 909 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 910 | #Const kUpperLeft_Corner 0 |
| 911 | #Line # index of top-left corner radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 912 | ## |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 913 | #Const kUpperRight_Corner 1 |
| 914 | #Line # index of top-right corner radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 915 | ## |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 916 | #Const kLowerRight_Corner 2 |
| 917 | #Line # index of bottom-right corner radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 918 | ## |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 919 | #Const kLowerLeft_Corner 3 |
| 920 | #Line # index of bottom-left corner radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 921 | ## |
| 922 | |
| 923 | #Example |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 924 | #Height 70 |
| 925 | SkPaint paint;
|
| 926 | paint.setAntiAlias(true);
|
| 927 | SkRRect rrect;
|
| 928 | SkVector corners[] = {{25, 17}, {17, 19}, {19, 15}, {15, 15}};
|
| 929 | rrect.setRectRadii({30, 10, 100, 60}, corners);
|
| 930 | canvas->drawRRect(rrect, paint);
|
| 931 | paint.setColor(SK_ColorWHITE);
|
| 932 | const SkRect r = rrect.getBounds();
|
| 933 | canvas->drawLine(r.fLeft, r.fTop + rrect.radii(SkRRect::kUpperLeft_Corner).fY,
|
| 934 | r.fRight, r.fTop + rrect.radii(SkRRect::kUpperRight_Corner).fY, paint);
|
| 935 | canvas->drawLine(r.fLeft, r.fBottom - rrect.radii(SkRRect::kLowerLeft_Corner).fY,
|
| 936 | r.fRight, r.fBottom - rrect.radii(SkRRect::kLowerRight_Corner).fY, paint);
|
| 937 | canvas->drawLine(r.fLeft + rrect.radii(SkRRect::kUpperLeft_Corner).fX, r.fTop,
|
| 938 | r.fLeft + rrect.radii(SkRRect::kLowerLeft_Corner).fX, r.fBottom, paint);
|
| 939 | canvas->drawLine(r.fRight - rrect.radii(SkRRect::kUpperRight_Corner).fX, r.fTop,
|
| 940 | r.fRight - rrect.radii(SkRRect::kLowerRight_Corner).fX, r.fBottom, paint); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 941 | ## |
| 942 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 943 | #SeeAlso radii |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 944 | |
| 945 | #Enum ## |
| 946 | |
| 947 | # ------------------------------------------------------------------------------ |
| 948 | |
| 949 | #Method const SkRect& rect() const |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 950 | #In Property |
| 951 | #Line # returns bounds ## |
| 952 | Returns bounds. Bounds may have zero width or zero height. Bounds right is |
| 953 | greater than or equal to left; bounds bottom is greater than or equal to top. |
| 954 | Result is identical to getBounds. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 955 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 956 | #Return bounding box ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 957 | |
| 958 | #Example |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 959 | for (SkScalar left : { SK_ScalarNaN, SK_ScalarInfinity, 100.f, 50.f, 25.f} ) {
|
| 960 | SkRRect rrect1 = SkRRect::MakeRectXY({left, 20, 60, 220}, 50, 200);
|
| 961 | SkDebugf("left bounds: (%g) %g\n", left, rrect1.rect().fLeft);
|
| 962 | } |
| 963 | #StdOut |
| 964 | left bounds: (nan) 0
|
| 965 | left bounds: (inf) 0
|
| 966 | left bounds: (100) 60
|
| 967 | left bounds: (50) 50
|
| 968 | left bounds: (25) 25 |
| 969 | ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 970 | ## |
| 971 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 972 | #SeeAlso getBounds |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 973 | |
| 974 | #Method ## |
| 975 | |
| 976 | # ------------------------------------------------------------------------------ |
| 977 | |
| 978 | #Method SkVector radii(Corner corner) const |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 979 | #In Property |
| 980 | #Line # returns x-axis and y-axis radii for one corner ## |
| 981 | Returns Scalar pair for radius of curve on x-axis and y-axis for one corner. |
| 982 | Both radii may be zero. If not zero, both are positive and finite. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 983 | |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 984 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 985 | #Param corner one of: kUpperLeft_Corner, kUpperRight_Corner, |
| 986 | kLowerRight_Corner, kLowerLeft_Corner |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 987 | ## |
| 988 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 989 | #Return x-axis and y-axis radii for one corner ## |
| 990 | |
| 991 | #Example |
| 992 | #Description |
| 993 | Finite values are scaled proportionately to fit; other values are set to zero. |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 994 | Scaled values cannot be larger than 25, half the bounding Round_Rect width. |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 995 | Small scaled values are halved to scale in proportion to the y-axis corner |
| 996 | radius, which is twice the bounds height. |
| 997 | ## |
| 998 | for (SkScalar radiusX : { SK_ScalarNaN, SK_ScalarInfinity, 100.f, 50.f, 25.f} ) {
|
| 999 | SkRRect rrect1 = SkRRect::MakeRectXY({10, 20, 60, 220}, radiusX, 200);
|
| 1000 | SkDebugf("left corner: (%g) %g\n", radiusX, rrect1.radii(SkRRect::kUpperLeft_Corner).fX);
|
| 1001 | }
|
| 1002 | #StdOut |
| 1003 | left corner: (nan) 0
|
| 1004 | left corner: (inf) 0
|
| 1005 | left corner: (100) 25
|
| 1006 | left corner: (50) 25
|
| 1007 | left corner: (25) 12.5 |
| 1008 | ## |
| 1009 | ## |
| 1010 | |
| 1011 | #SeeAlso Corner |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1012 | |
| 1013 | #Method ## |
| 1014 | |
| 1015 | # ------------------------------------------------------------------------------ |
| 1016 | |
| 1017 | #Method const SkRect& getBounds() const |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1018 | #In Property |
| 1019 | #Line # returns bounds ## |
| 1020 | Returns bounds. Bounds may have zero width or zero height. Bounds right is |
| 1021 | greater than or equal to left; bounds bottom is greater than or equal to top. |
| 1022 | Result is identical to rect(). |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1023 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1024 | #Return bounding box ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1025 | |
| 1026 | #Example |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1027 | #Height 120 |
| 1028 | SkPaint paint;
|
| 1029 | SkRRect rrect = SkRRect::MakeRectXY({20, 20, 220, 100}, 15, 15);
|
| 1030 | canvas->drawRRect(rrect, paint);
|
| 1031 | paint.setColor(SK_ColorWHITE);
|
| 1032 | rrect = SkRRect::MakeOval(rrect.getBounds());
|
| 1033 | canvas->drawRRect(rrect, paint); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1034 | ## |
| 1035 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1036 | #SeeAlso rect |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1037 | |
| 1038 | #Method ## |
| 1039 | |
| 1040 | # ------------------------------------------------------------------------------ |
| 1041 | |
| 1042 | #Method bool operator==(const SkRRect& a, const SkRRect& b) |
| 1043 | #In Operator |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1044 | #Line # returns true if members are equal ## |
| 1045 | Returns true if bounds and radii in a are equal to bounds and radii in b. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1046 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1047 | a and b are not equal if either contain NaN. a and b are equal if members |
| 1048 | contain zeroes width different signs. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1049 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1050 | #Param a Rect bounds and radii to compare ## |
| 1051 | #Param b Rect bounds and radii to compare ## |
| 1052 | |
| 1053 | #Return true if members are equal ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1054 | |
| 1055 | #Example |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1056 | SkRRect rrect1 = SkRRect::MakeRectXY({10, 20, 60, 220}, 50, 200);
|
| 1057 | SkRRect rrect2 = SkRRect::MakeRectXY(rrect1.rect(), 25, 100);
|
| 1058 | SkRRect rrect3 = SkRRect::MakeOval(rrect1.rect());
|
| 1059 | canvas->drawRRect(rrect1, SkPaint());
|
| 1060 | std::string str = "rrect1 " + std::string(rrect1 == rrect2 ? "=" : "!") + "= rrect2";
|
| 1061 | canvas->drawString(str.c_str(), 10, 240, SkPaint());
|
| 1062 | canvas->translate(70, 0);
|
| 1063 | canvas->drawRRect(rrect2, SkPaint());
|
| 1064 | canvas->translate(70, 0);
|
| 1065 | canvas->drawRRect(rrect3, SkPaint());
|
| 1066 | str = "rrect2 " + std::string(rrect2 == rrect3 ? "=" : "!") + "= rrect3";
|
| 1067 | canvas->drawString(str.c_str(), -20, 240, SkPaint()); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1068 | ## |
| 1069 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1070 | #SeeAlso operator!=(const SkRRect& a, const SkRRect& b) |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1071 | |
| 1072 | #Method ## |
| 1073 | |
| 1074 | # ------------------------------------------------------------------------------ |
| 1075 | |
| 1076 | #Method bool operator!=(const SkRRect& a, const SkRRect& b) |
| 1077 | #In Operator |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1078 | #Line # returns true if members are unequal ## |
| 1079 | Returns true if bounds and radii in a are not equal to bounds and radii in b. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1080 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1081 | a and b are not equal if either contain NaN. a and b are equal if members |
| 1082 | contain zeroes width different signs. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1083 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1084 | #Param a Rect bounds and radii to compare ## |
| 1085 | #Param b Rect bounds and radii to compare ## |
| 1086 | |
| 1087 | #Return true if members are not equal ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1088 | |
| 1089 | #Example |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1090 | SkRRect rrect1 = SkRRect::MakeRectXY({10, 20, 60, 220}, 50, 100);
|
| 1091 | SkRRect rrect2 = SkRRect::MakeRectXY(rrect1.rect(), 50, 50);
|
| 1092 | SkRRect rrect3 = SkRRect::MakeOval(rrect1.rect());
|
| 1093 | canvas->drawRRect(rrect1, SkPaint());
|
| 1094 | std::string str = "rrect1 " + std::string(rrect1 == rrect2 ? "=" : "!") + "= rrect2";
|
| 1095 | canvas->drawString(str.c_str(), 10, 240, SkPaint());
|
| 1096 | canvas->translate(70, 0);
|
| 1097 | canvas->drawRRect(rrect2, SkPaint());
|
| 1098 | canvas->translate(70, 0);
|
| 1099 | canvas->drawRRect(rrect3, SkPaint());
|
| 1100 | str = "rrect2 " + std::string(rrect2 == rrect3 ? "=" : "!") + "= rrect3";
|
| 1101 | canvas->drawString(str.c_str(), -20, 240, SkPaint()); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1102 | ## |
| 1103 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1104 | #SeeAlso operator==(const SkRRect& a, const SkRRect& b) |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1105 | |
| 1106 | #Method ## |
| 1107 | |
| 1108 | # ------------------------------------------------------------------------------ |
| 1109 | |
| 1110 | #Method void inset(SkScalar dx, SkScalar dy, SkRRect* dst) const |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1111 | #In Inset_Outset_Offset |
| 1112 | #Line # insets bounds and radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1113 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1114 | Copies Round_Rect to dst, then insets dst bounds by dx and dy, and adjusts dst |
| 1115 | radii by dx and dy. dx and dy may be positive, negative, or zero. dst may be |
| 1116 | Round_Rect. |
| 1117 | |
| 1118 | If either corner radius is zero, the corner has no curvature and is unchanged. |
| 1119 | Otherwise, if adjusted radius becomes negative, pins radius to zero. |
| 1120 | If dx exceeds half dst bounds width, dst bounds left and right are set to |
| 1121 | bounds x-axis center. If dy exceeds half dst bounds height, dst bounds top and |
| 1122 | bottom are set to bounds y-axis center. |
| 1123 | |
| 1124 | If dx or dy cause the bounds to become infinite, dst bounds is zeroed. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1125 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1126 | #Param dx added to rect().fLeft, and subtracted from rect().fRight ## |
| 1127 | #Param dy added to rect().fTop, and subtracted from rect().fBottom ## |
| 1128 | #Param dst insets bounds and radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1129 | |
| 1130 | #Example |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1131 | SkPaint paint;
|
| 1132 | paint.setAntiAlias(true);
|
| 1133 | paint.setStyle(SkPaint::kStroke_Style);
|
| 1134 | SkRRect rrect = SkRRect::MakeRectXY({100, 20, 140, 220}, 50, 100);
|
| 1135 | for (int index = 0; index < 25; ++index) {
|
| 1136 | canvas->drawRRect(rrect, paint);
|
| 1137 | rrect.inset(-3, 3, &rrect);
|
| 1138 | }
|
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1139 | ## |
| 1140 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1141 | #SeeAlso outset offset makeOffset |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1142 | |
| 1143 | #Method ## |
| 1144 | |
| 1145 | # ------------------------------------------------------------------------------ |
| 1146 | |
| 1147 | #Method void inset(SkScalar dx, SkScalar dy) |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1148 | #In Inset_Outset_Offset |
| 1149 | #Line # insets bounds and radii ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1150 | Insets bounds by dx and dy, and adjusts radii by dx and dy. dx and dy may be |
| 1151 | positive, negative, or zero. |
| 1152 | |
| 1153 | If either corner radius is zero, the corner has no curvature and is unchanged. |
| 1154 | Otherwise, if adjusted radius becomes negative, pins radius to zero. |
| 1155 | If dx exceeds half bounds width, bounds left and right are set to |
| 1156 | bounds x-axis center. If dy exceeds half bounds height, bounds top and |
| 1157 | bottom are set to bounds y-axis center. |
| 1158 | |
| 1159 | If dx or dy cause the bounds to become infinite, bounds is zeroed. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1160 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1161 | #Param dx added to rect().fLeft, and subtracted from rect().fRight ## |
| 1162 | #Param dy added to rect().fTop, and subtracted from rect().fBottom ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1163 | |
| 1164 | #Example |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1165 | SkPaint paint;
|
| 1166 | paint.setAntiAlias(true);
|
| 1167 | paint.setStyle(SkPaint::kStroke_Style);
|
| 1168 | SkRRect rrect = SkRRect::MakeRectXY({10, 20, 180, 220}, 50, 100);
|
| 1169 | for (int index = 0; index < 25; ++index) {
|
| 1170 | canvas->drawRRect(rrect, paint);
|
| 1171 | rrect.inset(3, 3);
|
| 1172 | } |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1173 | ## |
| 1174 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1175 | #SeeAlso outset offset makeOffset |
| 1176 | |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1177 | |
| 1178 | #Method ## |
| 1179 | |
| 1180 | # ------------------------------------------------------------------------------ |
| 1181 | |
| 1182 | #Method void outset(SkScalar dx, SkScalar dy, SkRRect* dst) const |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1183 | #In Inset_Outset_Offset |
| 1184 | #Line # outsets bounds and radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1185 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1186 | Outsets dst bounds by dx and dy, and adjusts radii by dx and dy. dx and dy may be |
| 1187 | positive, negative, or zero. |
| 1188 | |
| 1189 | If either corner radius is zero, the corner has no curvature and is unchanged. |
| 1190 | Otherwise, if adjusted radius becomes negative, pins radius to zero. |
| 1191 | If dx exceeds half dst bounds width, dst bounds left and right are set to |
| 1192 | bounds x-axis center. If dy exceeds half dst bounds height, dst bounds top and |
| 1193 | bottom are set to bounds y-axis center. |
| 1194 | |
| 1195 | If dx or dy cause the bounds to become infinite, dst bounds is zeroed. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1196 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1197 | #Param dx subtracted from rect().fLeft, and added to rect().fRight ## |
| 1198 | #Param dy subtracted from rect().fTop, and added to rect().fBottom ## |
| 1199 | #Param dst outset bounds and radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1200 | |
| 1201 | #Example |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1202 | SkPaint paint;
|
| 1203 | paint.setAntiAlias(true);
|
| 1204 | paint.setStyle(SkPaint::kStroke_Style);
|
| 1205 | SkRRect rrect = SkRRect::MakeRectXY({100, 20, 140, 220}, 50, 100);
|
| 1206 | for (int index = 0; index < 25; ++index) {
|
| 1207 | canvas->drawRRect(rrect, paint);
|
| 1208 | rrect.outset(-3, 3, &rrect);
|
| 1209 | }
|
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1210 | ## |
| 1211 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1212 | #SeeAlso inset offset makeOffset |
| 1213 | |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1214 | |
| 1215 | #Method ## |
| 1216 | |
| 1217 | # ------------------------------------------------------------------------------ |
| 1218 | |
| 1219 | #Method void outset(SkScalar dx, SkScalar dy) |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1220 | #In Inset_Outset_Offset |
| 1221 | #Line # outsets bounds and radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1222 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1223 | Outsets bounds by dx and dy, and adjusts radii by dx and dy. dx and dy may be |
| 1224 | positive, negative, or zero. |
| 1225 | |
| 1226 | If either corner radius is zero, the corner has no curvature and is unchanged. |
| 1227 | Otherwise, if adjusted radius becomes negative, pins radius to zero. |
| 1228 | If dx exceeds half bounds width, bounds left and right are set to |
| 1229 | bounds x-axis center. If dy exceeds half bounds height, bounds top and |
| 1230 | bottom are set to bounds y-axis center. |
| 1231 | |
| 1232 | If dx or dy cause the bounds to become infinite, bounds is zeroed. |
| 1233 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1234 | #Param dx subtracted from rect().fLeft, and added to rect().fRight ## |
| 1235 | #Param dy subtracted from rect().fTop, and added to rect().fBottom ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1236 | |
| 1237 | #Example |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1238 | SkPaint paint;
|
| 1239 | paint.setAntiAlias(true);
|
| 1240 | paint.setStyle(SkPaint::kStroke_Style);
|
| 1241 | SkRRect rrect = SkRRect::MakeRectXY({100, 20, 140, 220}, 50, 100);
|
| 1242 | for (int index = 0; index < 25; ++index) {
|
| 1243 | canvas->drawRRect(rrect, paint);
|
| 1244 | rrect.outset(3, 3);
|
| 1245 | }
|
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1246 | ## |
| 1247 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1248 | #SeeAlso inset offset makeOffset |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1249 | |
| 1250 | #Method ## |
| 1251 | |
| 1252 | # ------------------------------------------------------------------------------ |
| 1253 | |
| 1254 | #Method void offset(SkScalar dx, SkScalar dy) |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1255 | #In Inset_Outset_Offset |
| 1256 | #Line # offsets bounds and radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1257 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1258 | Translates Round_Rect by (dx, dy). |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1259 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1260 | #Param dx offset added to rect().fLeft and rect().fRight ## |
| 1261 | #Param dy offset added to rect().fTop and rect().fBottom ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1262 | |
| 1263 | #Example |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1264 | SkPaint paint;
|
| 1265 | paint.setAntiAlias(true);
|
| 1266 | paint.setStyle(SkPaint::kStroke_Style);
|
| 1267 | SkRRect rrect = SkRRect::MakeRectXY({100, 20, 140, 220}, 50, 100);
|
| 1268 | for (int index = 0; index < 25; ++index) {
|
| 1269 | canvas->drawRRect(rrect, paint);
|
| 1270 | rrect.offset(3, 3);
|
| 1271 | }
|
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1272 | ## |
| 1273 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1274 | #SeeAlso makeOffset inset outset |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1275 | |
| 1276 | #Method ## |
| 1277 | |
| 1278 | # ------------------------------------------------------------------------------ |
| 1279 | |
| 1280 | #Method SkRRect SK_WARN_UNUSED_RESULT makeOffset(SkScalar dx, SkScalar dy) const |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1281 | #In Inset_Outset_Offset |
| 1282 | #Line # offsets bounds and radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1283 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1284 | Returns Round_Rect translated by (dx, dy). |
| 1285 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1286 | #Param dx offset added to rect().fLeft and rect().fRight ## |
| 1287 | #Param dy offset added to rect().fTop and rect().fBottom ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1288 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1289 | #Return Round_Rect bounds offset by (dx, dy), with unchanged corner radii ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1290 | |
| 1291 | #Example |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1292 | SkPaint paint;
|
| 1293 | paint.setAntiAlias(true);
|
| 1294 | paint.setStyle(SkPaint::kStroke_Style);
|
| 1295 | SkRRect rrect = SkRRect::MakeRectXY({100, 20, 140, 220}, 50, 100);
|
| 1296 | for (int index = 0; index < 25; ++index) {
|
| 1297 | canvas->drawRRect(rrect, paint);
|
| 1298 | rrect = rrect.makeOffset(-3, 3);
|
| 1299 | } |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1300 | ## |
| 1301 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1302 | #SeeAlso offset inset outset |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1303 | |
| 1304 | #Method ## |
| 1305 | |
| 1306 | # ------------------------------------------------------------------------------ |
| 1307 | |
| 1308 | #Method bool contains(const SkRect& rect) const |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1309 | #In Intersection |
| 1310 | #Line # returns true if Rect is inside ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1311 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1312 | Returns true if rect is inside the bounds and corner radii, and if |
| 1313 | Round_Rect and rect are not empty. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1314 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1315 | #Param rect area tested for containment ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1316 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1317 | #Return true if Round_Rect contains rect ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1318 | |
| 1319 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1320 | #Height 110 |
| 1321 | SkRect test = {10, 10, 110, 80};
|
| 1322 | SkRRect rrect = SkRRect::MakeRect(test);
|
| 1323 | SkRRect oval = SkRRect::MakeOval(test);
|
| 1324 | test.inset(10, 10);
|
| 1325 | SkPaint paint;
|
| 1326 | paint.setAntiAlias(true);
|
| 1327 | paint.setTextAlign(SkPaint::kCenter_Align);
|
| 1328 | canvas->drawString(rrect.contains(test) ? "contains" : "does not contain", 55, 100, paint);
|
| 1329 | canvas->drawString(oval.contains(test) ? "contains" : "does not contain", 185, 100, paint);
|
| 1330 | paint.setStyle(SkPaint::kStroke_Style);
|
| 1331 | canvas->drawRRect(rrect, paint);
|
| 1332 | canvas->drawRect(test, paint);
|
| 1333 | canvas->translate(120, 0);
|
| 1334 | canvas->drawRRect(oval, paint);
|
| 1335 | canvas->drawRect(test, paint); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1336 | ## |
| 1337 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1338 | #SeeAlso SkRect::contains |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1339 | |
| 1340 | #Method ## |
| 1341 | |
| 1342 | # ------------------------------------------------------------------------------ |
| 1343 | |
| 1344 | #Method bool isValid() const |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1345 | #In Utility |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1346 | #Line # returns if type() matches bounds and radii ## |
| 1347 | Returns true if bounds and radii values are finite and describe a Round_Rect |
| 1348 | Type that matches getType. All Round_Rect methods construct valid types, |
| 1349 | even if the input values are not valid. Invalid Round_Rect data can only |
| 1350 | be generated by corrupting memory. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1351 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1352 | #Return true if bounds and radii match type() ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1353 | |
| 1354 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1355 | #Height 110 |
| 1356 | SkRRect rrect = SkRRect::MakeRect({10, 10, 110, 80});
|
| 1357 | SkRRect corrupt = rrect;
|
| 1358 | *((float*) &corrupt) = 120;
|
| 1359 | SkPaint paint;
|
| 1360 | paint.setAntiAlias(true);
|
| 1361 | paint.setTextAlign(SkPaint::kCenter_Align);
|
| 1362 | canvas->drawString(rrect.isValid() ? "is valid" : "is corrupted", 55, 100, paint);
|
| 1363 | canvas->drawString(corrupt.isValid() ? "is valid" : "is corrupted", 185, 100, paint);
|
| 1364 | paint.setStyle(SkPaint::kStroke_Style);
|
| 1365 | canvas->drawRRect(rrect, paint);
|
| 1366 | canvas->translate(120, 0);
|
| 1367 | canvas->drawRRect(corrupt, paint); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1368 | ## |
| 1369 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1370 | #SeeAlso Type getType |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1371 | |
| 1372 | #Method ## |
| 1373 | |
| 1374 | # ------------------------------------------------------------------------------ |
| 1375 | |
| 1376 | #Const kSizeInMemory 48 |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1377 | #Line # storage space for Round_Rect ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1378 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1379 | Space required to serialize SkRRect into a buffer. Always a multiple of four. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1380 | |
| 1381 | #Const ## |
| 1382 | |
| 1383 | # ------------------------------------------------------------------------------ |
| 1384 | |
| 1385 | #Method size_t writeToMemory(void* buffer) const |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1386 | #In Utility |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1387 | #Line # writes Round_Rect to buffer ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1388 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1389 | Writes Round_Rect to buffer. Writes kSizeInMemory bytes, and returns |
| 1390 | kSizeInMemory, the number of bytes written. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1391 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1392 | #Param buffer storage for Round_Rect ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1393 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1394 | #Return bytes written, kSizeInMemory ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1395 | |
| 1396 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1397 | #Height 110 |
| 1398 | SkRRect rrect = SkRRect::MakeRect({10, 10, 110, 80});
|
| 1399 | char storage[SkRRect::kSizeInMemory];
|
| 1400 | rrect.writeToMemory(storage);
|
| 1401 | SkRRect copy;
|
| 1402 | copy.readFromMemory(storage, sizeof(storage));
|
| 1403 | SkPaint paint;
|
| 1404 | paint.setAntiAlias(true);
|
| 1405 | paint.setTextAlign(SkPaint::kCenter_Align);
|
| 1406 | canvas->drawString("rrect", 55, 100, paint);
|
| 1407 | canvas->drawString("copy", 185, 100, paint);
|
| 1408 | paint.setStyle(SkPaint::kStroke_Style);
|
| 1409 | canvas->drawRRect(rrect, paint);
|
| 1410 | canvas->translate(120, 0);
|
| 1411 | canvas->drawRRect(copy, paint); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1412 | ## |
| 1413 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1414 | #SeeAlso readFromMemory |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1415 | |
| 1416 | #Method ## |
| 1417 | |
| 1418 | # ------------------------------------------------------------------------------ |
| 1419 | |
| 1420 | #Method size_t readFromMemory(const void* buffer, size_t length) |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1421 | #In Utility |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1422 | #Line # reads Round_Rect from buffer ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1423 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1424 | Reads Round_Rect from buffer, reading kSizeInMemory bytes. |
| 1425 | Returns kSizeInMemory, bytes read if length is at least kSizeInMemory. |
| 1426 | Otherwise, returns zero. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1427 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1428 | #Param buffer memory to read from ## |
| 1429 | #Param length size of buffer ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1430 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1431 | #Return bytes read, or 0 if length is less than kSizeInMemory |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1432 | ## |
| 1433 | |
| 1434 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1435 | #Height 110 |
| 1436 | SkVector radii[] = {{5, 5}, {10, 10}, {15, 15}, {5, 5}};
|
| 1437 | SkRRect rrect;
|
| 1438 | rrect.setRectRadii({10, 10, 110, 80}, radii);
|
| 1439 | char storage[SkRRect::kSizeInMemory];
|
| 1440 | rrect.writeToMemory(storage);
|
| 1441 | SkRRect copy;
|
| 1442 | copy.readFromMemory(storage, sizeof(storage));
|
| 1443 | SkPaint paint;
|
| 1444 | paint.setAntiAlias(true);
|
| 1445 | paint.setTextAlign(SkPaint::kCenter_Align);
|
| 1446 | canvas->drawString("rrect", 55, 100, paint);
|
| 1447 | canvas->drawString("copy", 185, 100, paint);
|
| 1448 | paint.setStyle(SkPaint::kStroke_Style);
|
| 1449 | canvas->drawRRect(rrect, paint);
|
| 1450 | canvas->translate(120, 0);
|
| 1451 | canvas->drawRRect(copy, paint); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1452 | ## |
| 1453 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1454 | #SeeAlso writeToMemory |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1455 | |
| 1456 | #Method ## |
| 1457 | |
| 1458 | # ------------------------------------------------------------------------------ |
| 1459 | |
| 1460 | #Method bool transform(const SkMatrix& matrix, SkRRect* dst) const |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1461 | #In Inset_Outset_Offset |
| 1462 | #Line # scales and offsets into copy ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1463 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1464 | Transforms by Round_Rect by matrix, storing result in dst. |
| 1465 | Returns true if Round_Rect transformed can be represented by another Round_Rect. |
| 1466 | Returns false if matrix contains transformations other than scale and translate. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1467 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1468 | Asserts in debug builds if Round_Rect equals dst. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1469 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1470 | #Param matrix SkMatrix specifying the transform ## |
| 1471 | #Param dst SkRRect to store the result ## |
| 1472 | |
| 1473 | #Return true if transformation succeeded. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1474 | ## |
| 1475 | |
| 1476 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1477 | #Height 110 |
| 1478 | SkVector radii[] = {{5, 5}, {10, 10}, {15, 15}, {5, 5}};
|
| 1479 | SkRRect rrect;
|
| 1480 | rrect.setRectRadii({10, 10, 110, 80}, radii);
|
| 1481 | SkRRect transformed;
|
| 1482 | SkMatrix matrix = SkMatrix::MakeRectToRect(rrect.rect(), {140, 30, 220, 80},
|
| 1483 | SkMatrix::kCenter_ScaleToFit);
|
| 1484 | bool success = rrect.transform(matrix, &transformed);
|
| 1485 | SkPaint paint;
|
| 1486 | paint.setAntiAlias(true);
|
| 1487 | paint.setTextAlign(SkPaint::kCenter_Align);
|
| 1488 | canvas->drawString("rrect", 55, 100, paint);
|
| 1489 | canvas->drawString(success ? "transformed" : "transform failed", 185, 100, paint);
|
| 1490 | paint.setStyle(SkPaint::kStroke_Style);
|
| 1491 | canvas->drawRRect(rrect, paint);
|
| 1492 | canvas->drawRRect(transformed, paint); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1493 | ## |
| 1494 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1495 | #SeeAlso SkPath::transform |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1496 | |
| 1497 | #Method ## |
| 1498 | |
| 1499 | # ------------------------------------------------------------------------------ |
| 1500 | |
| 1501 | #Method void dump(bool asHex) const |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1502 | #In Utility |
| 1503 | #Line # sends text representation to standard output ## |
| 1504 | Writes text representation of Round_Rect to standard output. |
| 1505 | Set asHex true to generate exact binary representations |
| 1506 | of floating point numbers. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1507 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1508 | #Param asHex true if SkScalar values are written as hexadecimal ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1509 | |
| 1510 | #Example |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1511 | SkRRect rrect = SkRRect::MakeRect({6.f / 7, 2.f / 3, 6.f / 7, 2.f / 3});
|
| 1512 | for (bool dumpAsHex : { false, true } ) {
|
| 1513 | rrect.dump(dumpAsHex);
|
| 1514 | } |
| 1515 | #StdOut |
| 1516 | SkRect::MakeLTRB(0.857143f, 0.666667f, 0.857143f, 0.666667f);
|
| 1517 | const SkPoint corners[] = {
|
| 1518 | { 0, 0 },
|
| 1519 | { 0, 0 },
|
| 1520 | { 0, 0 },
|
| 1521 | { 0, 0 },
|
| 1522 | };
|
| 1523 | SkRect::MakeLTRB(SkBits2Float(0x3f5b6db7), /* 0.857143 */
|
| 1524 | SkBits2Float(0x3f2aaaab), /* 0.666667 */
|
| 1525 | SkBits2Float(0x3f5b6db7), /* 0.857143 */
|
| 1526 | SkBits2Float(0x3f2aaaab) /* 0.666667 */);
|
| 1527 | const SkPoint corners[] = {
|
| 1528 | { SkBits2Float(0x00000000), SkBits2Float(0x00000000) }, /* 0.000000 0.000000 */
|
| 1529 | { SkBits2Float(0x00000000), SkBits2Float(0x00000000) }, /* 0.000000 0.000000 */
|
| 1530 | { SkBits2Float(0x00000000), SkBits2Float(0x00000000) }, /* 0.000000 0.000000 */
|
| 1531 | { SkBits2Float(0x00000000), SkBits2Float(0x00000000) }, /* 0.000000 0.000000 */
|
| 1532 | }; |
| 1533 | ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1534 | ## |
| 1535 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1536 | #SeeAlso dumpHex SkRect::dump SkPath::dump SkPathMeasure::dump |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1537 | |
| 1538 | #Method ## |
| 1539 | |
| 1540 | # ------------------------------------------------------------------------------ |
| 1541 | |
| 1542 | #Method void dump() const |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1543 | #In Utility |
| 1544 | #Line # sends text representation using floats to standard output ## |
| 1545 | Writes text representation of Round_Rect to standard output. The representation |
| 1546 | may be directly compiled as C++ code. Floating point values are written |
| 1547 | with limited precision; it may not be possible to reconstruct original |
| 1548 | Round_Rect from output. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1549 | |
| 1550 | #Example |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1551 | SkRRect rrect = SkRRect::MakeRect({6.f / 7, 2.f / 3, 6.f / 7, 2.f / 3});
|
| 1552 | rrect.dump();
|
| 1553 | SkRect bounds = SkRect::MakeLTRB(0.857143f, 0.666667f, 0.857143f, 0.666667f);
|
| 1554 | const SkPoint corners[] = {
|
| 1555 | { 0, 0 },
|
| 1556 | { 0, 0 },
|
| 1557 | { 0, 0 },
|
| 1558 | { 0, 0 },
|
| 1559 | };
|
| 1560 | SkRRect copy;
|
| 1561 | copy.setRectRadii(bounds, corners);
|
| 1562 | SkDebugf("rrect is " "%s" "equal to copy\n", rrect == copy ? "" : "not ");
|
| 1563 | #StdOut |
| 1564 | SkRect::MakeLTRB(0.857143f, 0.666667f, 0.857143f, 0.666667f);
|
| 1565 | const SkPoint corners[] = {
|
| 1566 | { 0, 0 },
|
| 1567 | { 0, 0 },
|
| 1568 | { 0, 0 },
|
| 1569 | { 0, 0 },
|
| 1570 | };
|
| 1571 | rrect is not equal to copy |
| 1572 | ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1573 | ## |
| 1574 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1575 | #SeeAlso dumpHex SkRect::dump SkPath::dump SkPathMeasure::dump |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1576 | |
| 1577 | #Method ## |
| 1578 | |
| 1579 | # ------------------------------------------------------------------------------ |
| 1580 | |
| 1581 | #Method void dumpHex() const |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1582 | #In Utility |
| 1583 | #Line # sends text representation using hexadecimal to standard output ## |
| 1584 | Writes text representation of Round_Rect to standard output. The representation |
| 1585 | may be directly compiled as C++ code. Floating point values are written |
| 1586 | in hexadecimal to preserve their exact bit pattern. The output reconstructs the |
| 1587 | original Round_Rect. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1588 | |
| 1589 | #Example |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1590 | SkRRect rrect = SkRRect::MakeRect({6.f / 7, 2.f / 3, 6.f / 7, 2.f / 3});
|
| 1591 | rrect.dumpHex();
|
| 1592 | SkRect bounds = SkRect::MakeLTRB(SkBits2Float(0x3f5b6db7), /* 0.857143 */
|
| 1593 | SkBits2Float(0x3f2aaaab), /* 0.666667 */
|
| 1594 | SkBits2Float(0x3f5b6db7), /* 0.857143 */
|
| 1595 | SkBits2Float(0x3f2aaaab) /* 0.666667 */);
|
| 1596 | const SkPoint corners[] = {
|
| 1597 | { SkBits2Float(0x00000000), SkBits2Float(0x00000000) }, /* 0.000000 0.000000 */
|
| 1598 | { SkBits2Float(0x00000000), SkBits2Float(0x00000000) }, /* 0.000000 0.000000 */
|
| 1599 | { SkBits2Float(0x00000000), SkBits2Float(0x00000000) }, /* 0.000000 0.000000 */
|
| 1600 | { SkBits2Float(0x00000000), SkBits2Float(0x00000000) }, /* 0.000000 0.000000 */
|
| 1601 | };
|
| 1602 | SkRRect copy;
|
| 1603 | copy.setRectRadii(bounds, corners);
|
| 1604 | SkDebugf("rrect is " "%s" "equal to copy\n", rrect == copy ? "" : "not "); |
| 1605 | #StdOut |
| 1606 | SkRect::MakeLTRB(SkBits2Float(0x3f5b6db7), /* 0.857143 */
|
| 1607 | SkBits2Float(0x3f2aaaab), /* 0.666667 */
|
| 1608 | SkBits2Float(0x3f5b6db7), /* 0.857143 */
|
| 1609 | SkBits2Float(0x3f2aaaab) /* 0.666667 */);
|
| 1610 | const SkPoint corners[] = {
|
| 1611 | { SkBits2Float(0x00000000), SkBits2Float(0x00000000) }, /* 0.000000 0.000000 */
|
| 1612 | { SkBits2Float(0x00000000), SkBits2Float(0x00000000) }, /* 0.000000 0.000000 */
|
| 1613 | { SkBits2Float(0x00000000), SkBits2Float(0x00000000) }, /* 0.000000 0.000000 */
|
| 1614 | { SkBits2Float(0x00000000), SkBits2Float(0x00000000) }, /* 0.000000 0.000000 */
|
| 1615 | };
|
| 1616 | rrect is equal to copy |
| 1617 | ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1618 | ## |
| 1619 | |
Cary Clark | 53498e9 | 2018-06-28 19:13:56 -0400 | [diff] [blame] | 1620 | #SeeAlso dump SkRect::dumpHex SkPath::dumpHex |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1621 | |
| 1622 | #Method ## |
| 1623 | |
| 1624 | #Class SkRRect ## |
| 1625 | |
| 1626 | #Topic RRect ## |