blob: 3a0c136bae2485e03a220c8c9ebdc733cddde652 [file] [log] [blame]
Cary Clark224c7002018-06-27 11:00:21 -04001#Topic RRect
2#Alias Round_Rect ##
3#Alias RRect_Reference ##
4
5#Class SkRRect
6
Cary Clark80247e52018-07-11 16:18:41 -04007SkRRect describes a rounded rectangle with a bounds and a pair of radii for each corner.
Cary Clarkf9603982018-07-17 08:20:27 -04008The bounds and radii can be set so that SkRRect describes: a rectangle with sharp corners;
9a Circle; an Oval; or a rectangle with one or more rounded corners.
Cary Clark224c7002018-06-27 11:00:21 -040010
Cary Clark80247e52018-07-11 16:18:41 -040011SkRRect allows implementing CSS properties that describe rounded corners.
12SkRRect may have up to eight different radii, one for each axis on each of its four
Cary Clark224c7002018-06-27 11:00:21 -040013corners.
14
Cary Clark80247e52018-07-11 16:18:41 -040015SkRRect may modify the provided parameters when initializing bounds and radii.
Cary Clarkf9603982018-07-17 08:20:27 -040016If either axis radii is zero or less: radii are stored as zero; corner is square.
Cary Clark80247e52018-07-11 16:18:41 -040017If corner curves overlap, radii are proportionally reduced to fit within bounds.
Cary Clark224c7002018-06-27 11:00:21 -040018
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 Clark82f1f742018-06-28 08:50:35 -040037#Method SkRRect()
Cary Clark224c7002018-06-27 11:00:21 -040038#In Constructor
Cary Clark82f1f742018-06-28 08:50:35 -040039#Line # creates with zeroed bounds and corner radii ##
Cary Clark224c7002018-06-27 11:00:21 -040040
Cary Clark82f1f742018-06-28 08:50:35 -040041Initializes bounds at (0, 0), the origin, with zero width and height.
42Initializes corner radii to (0, 0), and sets type of kEmpty_Type.
Cary Clark224c7002018-06-27 11:00:21 -040043
Cary Clark82f1f742018-06-28 08:50:35 -040044#Return empty Round_Rect ##
Cary Clark224c7002018-06-27 11:00:21 -040045
46#Example
Cary Clark82f1f742018-06-28 08:50:35 -040047#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 Clark224c7002018-06-27 11:00:21 -040055##
56
Cary Clark82f1f742018-06-28 08:50:35 -040057#SeeAlso setEmpty isEmpty
Cary Clark224c7002018-06-27 11:00:21 -040058
59#Method ##
60
61# ------------------------------------------------------------------------------
62
Cary Clark82f1f742018-06-28 08:50:35 -040063#Method SkRRect(const SkRRect& rrect)
Cary Clark224c7002018-06-27 11:00:21 -040064#In Constructor
Cary Clark82f1f742018-06-28 08:50:35 -040065#Line # copies bounds and corner radii ##
Cary Clark224c7002018-06-27 11:00:21 -040066
Cary Clark82f1f742018-06-28 08:50:35 -040067Initializes to copy of rrect bounds and corner radii.
Cary Clark224c7002018-06-27 11:00:21 -040068
Cary Clark82f1f742018-06-28 08:50:35 -040069#Param rrect bounds and corner to copy ##
Cary Clark224c7002018-06-27 11:00:21 -040070
Cary Clark82f1f742018-06-28 08:50:35 -040071#Return copy of rrect ##
72
73#Bug 8115
Cary Clark224c7002018-06-27 11:00:21 -040074#Example
Cary Clark80247e52018-07-11 16:18:41 -040075#Height 60
Cary Clark82f1f742018-06-28 08:50:35 -040076 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 Clark224c7002018-06-27 11:00:21 -040084##
85
Cary Clark82f1f742018-06-28 08:50:35 -040086#SeeAlso operator=(const SkRRect& rrect) MakeRect
Cary Clark224c7002018-06-27 11:00:21 -040087
88#Method ##
89
90# ------------------------------------------------------------------------------
91
Cary Clark82f1f742018-06-28 08:50:35 -040092#Method SkRRect& operator=(const SkRRect& rrect)
Cary Clark224c7002018-06-27 11:00:21 -040093#In Operator
Cary Clark82f1f742018-06-28 08:50:35 -040094#Line # copies bounds and corner radii ##
Cary Clark224c7002018-06-27 11:00:21 -040095
Cary Clark82f1f742018-06-28 08:50:35 -040096Copies rrect bounds and corner radii.
Cary Clark224c7002018-06-27 11:00:21 -040097
Cary Clark82f1f742018-06-28 08:50:35 -040098#Param rrect bounds and corner to copy ##
99
100#Return copy of rrect ##
Cary Clark224c7002018-06-27 11:00:21 -0400101
102#Example
Cary Clark80247e52018-07-11 16:18:41 -0400103#Height 110
Cary Clark82f1f742018-06-28 08:50:35 -0400104 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 Clark224c7002018-06-27 11:00:21 -0400112##
113
Cary Clark82f1f742018-06-28 08:50:35 -0400114#SeeAlso SkRRect(const SkRRect& rrect) MakeRect
Cary Clark224c7002018-06-27 11:00:21 -0400115
116#Method ##
117
118# ------------------------------------------------------------------------------
Cary Clark82f1f742018-06-28 08:50:35 -0400119#Subtopic Type
120#Line # specialization of Round_Rect geometry ##
121
122#PhraseDef list_of_rrect_types
123kEmpty_Type, kRect_Type, kOval_Type, kSimple_Type, kNinePatch_Type,
124kComplex_Type
125##
Cary Clark224c7002018-06-27 11:00:21 -0400126
127#Enum Type
Cary Clark82f1f742018-06-28 08:50:35 -0400128#Line # specialization of Round_Rect geometry ##
Cary Clark224c7002018-06-27 11:00:21 -0400129
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 Clark82f1f742018-06-28 08:50:35 -0400142Type describes possible specializations of Round_Rect. Each Type is
143exclusive; a Round_Rect may only have one type.
144
Cary Clark80247e52018-07-11 16:18:41 -0400145Type members become progressively less restrictive; larger values of
Cary Clark82f1f742018-06-28 08:50:35 -0400146Type have more degrees of freedom than smaller values.
Cary Clark224c7002018-06-27 11:00:21 -0400147
Cary Clark80247e52018-07-11 16:18:41 -0400148#Const kEmpty_Type 0
Cary Clark82f1f742018-06-28 08:50:35 -0400149#Line # zero width or height ##
Cary Clark224c7002018-06-27 11:00:21 -0400150Round_Rect has zero width or height. All radii are zero.
151##
Cary Clark80247e52018-07-11 16:18:41 -0400152#Const kRect_Type 1
Cary Clark82f1f742018-06-28 08:50:35 -0400153#Line # non-zero width and height, and zeroed radii ##
Cary Clark224c7002018-06-27 11:00:21 -0400154Round_Rect has width and height. All radii are zero.
155##
Cary Clark80247e52018-07-11 16:18:41 -0400156#Const kOval_Type 2
Cary Clark82f1f742018-06-28 08:50:35 -0400157#Line # non-zero width and height filled with radii ##
Cary Clark224c7002018-06-27 11:00:21 -0400158Round_Rect has width and height. All four x-radii are equal,
159and at least half the width. All four y-radii are equal,
160and at least half the height.
161##
Cary Clark80247e52018-07-11 16:18:41 -0400162#Const kSimple_Type 3
Cary Clark82f1f742018-06-28 08:50:35 -0400163#Line # non-zero width and height with equal radii ##
Cary Clark224c7002018-06-27 11:00:21 -0400164Round_Rect has width and height. All four x-radii are equal and
165greater than zero, and all four y-radii are equal and greater than
166zero. Either x-radii are less than half the width, or y-radii is
167less than half the height, or both.
168##
Cary Clark80247e52018-07-11 16:18:41 -0400169#Const kNinePatch_Type 4
Cary Clark82f1f742018-06-28 08:50:35 -0400170#Line # non-zero width and height with axis-aligned radii ##
Cary Clark224c7002018-06-27 11:00:21 -0400171Round_Rect has width and height. Left x-radii are equal, top
172y-radii are equal, right x-radii are equal, and bottom y-radii
Cary Clarkf9603982018-07-17 08:20:27 -0400173are equal. The radii do not describe Rect, Oval, or simple type.
Cary Clark224c7002018-06-27 11:00:21 -0400174
175The centers of the corner ellipses form an axis-aligned rectangle
176that divides the Round_Rect into nine rectangular patches; an
177interior rectangle, four edges, and four corners.
178##
Cary Clark80247e52018-07-11 16:18:41 -0400179#Const kComplex_Type 5
Cary Clark82f1f742018-06-28 08:50:35 -0400180#Line # non-zero width and height with arbitrary radii ##
Cary Clark224c7002018-06-27 11:00:21 -0400181both radii are non-zero.
182##
Cary Clark80247e52018-07-11 16:18:41 -0400183#Const kLastType 5
Cary Clark82f1f742018-06-28 08:50:35 -0400184#Line # largest Type value ##
Cary Clark224c7002018-06-27 11:00:21 -0400185##
186
187#Example
Cary Clark82f1f742018-06-28 08:50:35 -0400188#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 Clark224c7002018-06-27 11:00:21 -0400207##
208
Cary Clark82f1f742018-06-28 08:50:35 -0400209#SeeAlso Rect Path
Cary Clark224c7002018-06-27 11:00:21 -0400210
211#Enum ##
212
213# ------------------------------------------------------------------------------
214
215#Method Type getType() const
Cary Clark82f1f742018-06-28 08:50:35 -0400216#In Property
217#Line # returns Type ##
Cary Clark224c7002018-06-27 11:00:21 -0400218
Cary Clark82f1f742018-06-28 08:50:35 -0400219Returns Type, one of: #list_of_rrect_types#.
Cary Clark224c7002018-06-27 11:00:21 -0400220
Cary Clark82f1f742018-06-28 08:50:35 -0400221#Return Type ##
Cary Clark224c7002018-06-27 11:00:21 -0400222
223#Example
Cary Clark80247e52018-07-11 16:18:41 -0400224#Height 100
Cary Clark82f1f742018-06-28 08:50:35 -0400225#Description
226rrect2 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 Clark224c7002018-06-27 11:00:21 -0400239##
240
Cary Clark82f1f742018-06-28 08:50:35 -0400241#SeeAlso Type type
Cary Clark224c7002018-06-27 11:00:21 -0400242
243#Method ##
244
245# ------------------------------------------------------------------------------
246
247#Method Type type() const
Cary Clark82f1f742018-06-28 08:50:35 -0400248#In Property
249#Line # returns Type ##
Cary Clark224c7002018-06-27 11:00:21 -0400250
Cary Clark82f1f742018-06-28 08:50:35 -0400251Returns Type, one of: #list_of_rrect_types#.
252
253#Return Type ##
Cary Clark224c7002018-06-27 11:00:21 -0400254
255#Example
Cary Clark80247e52018-07-11 16:18:41 -0400256#Height 100
Cary Clark82f1f742018-06-28 08:50:35 -0400257#Description
258inset() 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 Clark224c7002018-06-27 11:00:21 -0400271##
272
Cary Clark82f1f742018-06-28 08:50:35 -0400273#SeeAlso Type getType
Cary Clark224c7002018-06-27 11:00:21 -0400274
275#Method ##
276
Cary Clark82f1f742018-06-28 08:50:35 -0400277#Subtopic Type ##
278
Cary Clark224c7002018-06-27 11:00:21 -0400279# ------------------------------------------------------------------------------
280
281#Method inline bool isEmpty() const
282#In Property
283#Line # returns true if width or height are zero ##
284Returns true if rect().fLeft is equal to rect().fRight, or if rect().fTop is equal
285to 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 Clark80247e52018-07-11 16:18:41 -0400313Returns true if not empty, and if either x-axis or y-axis radius at each corner
314is zero.
Cary Clark224c7002018-06-27 11:00:21 -0400315
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 ##
343Returns true if not empty, if all x-axis radii are equal, if all y-axis radii
344are equal, x-axis radii are at least half the width, and y-axis radii are at
345least half the height.
346
347#Return true if has identical geometry to Oval ##
348
349#Example
350#Height 100
351#Description
352The first radii are scaled down proportionately until both x-axis and y-axis fit
353within the bounds. After scaling, x-axis radius is smaller than half the width;
Cary Clark80247e52018-07-11 16:18:41 -0400354left Round_Rect is not an oval. The second radii are equal to half the
355dimensions; right Round_Rect is an oval.
Cary Clark224c7002018-06-27 11:00:21 -0400356##
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 Clark80247e52018-07-11 16:18:41 -0400378#Line # returns true if not empty, Rect or Oval; and axes radii are equal ##
Cary Clark224c7002018-06-27 11:00:21 -0400379Returns true if not empty, if all x-axis radii are equal but not zero,
380if all y-axis radii are equal but not zero; and x-axis radius is less than half
381width(), or y-axis radius is less than half height().
382
Cary Clark80247e52018-07-11 16:18:41 -0400383#Return true if not empty, Rect or Oval; and axes radii are equal ##
Cary Clark224c7002018-06-27 11:00:21 -0400384
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 Clark80247e52018-07-11 16:18:41 -0400412#Line # returns true if not empty, Rect, Oval or simple; and radii are axis-aligned ##
Cary Clark224c7002018-06-27 11:00:21 -0400413Returns true if isEmpty, isRect, isOval, and isSimple return false; and if
414left x-axis radii are equal, right x-axis radii are equal, top y-axis radii are
415equal, and bottom y-axis radii are equal.
416
Cary Clark80247e52018-07-11 16:18:41 -0400417#Return true if not empty, Rect, Oval or simple; and radii are axis-aligned ##
Cary Clark224c7002018-06-27 11:00:21 -0400418
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 Clark80247e52018-07-11 16:18:41 -0400446#Line # returns true if not empty, Rect, Oval, simple, or nine-patch ##
Cary Clark224c7002018-06-27 11:00:21 -0400447
448Returns true if isEmpty, isRect, isOval, isSimple, and isNinePatch return false.
449If true: width and height are greater than zero, at least one corner radii are
450both greater than zero; left x-axis radii are not equal, or right x-axis radii
451are not equal, or top y-axis radii are not equal, or bottom y-axis radii are not
452equal.
453
Cary Clark80247e52018-07-11 16:18:41 -0400454#Return true if not empty, Rect, Oval, simple, or nine-patch ##
Cary Clark224c7002018-06-27 11:00:21 -0400455
456#Example
Cary Clark80247e52018-07-11 16:18:41 -0400457#Height 100
Cary Clark224c7002018-06-27 11:00:21 -0400458 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 Clark80247e52018-07-11 16:18:41 -0400482#Line # returns span in x-axis ##
Cary Clark224c7002018-06-27 11:00:21 -0400483Returns span on the x-axis. This does not check if result fits in 32-bit float;
484result may be infinity.
485
486#Return bounds().fRight minus bounds().fLeft ##
487
488#Example
489#Description
490SkRRect::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
497unsorted width: 5
498large 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 Clark80247e52018-07-11 16:18:41 -0400510#Line # returns span in y-axis ##
Cary Clark224c7002018-06-27 11:00:21 -0400511Returns span on the y-axis. This does not check if result fits in 32-bit float;
512result may be infinity.
513
514#Return bounds().fBottom minus bounds().fTop ##
515
516#Example
517#Description
518SkRRect::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
525unsorted height: 5
526large 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 Clarkd2ca79c2018-08-10 13:09:13 -0400540Returns top-left corner radii. If type() returns kEmpty_Type, kRect_Type,
Cary Clark224c7002018-06-27 11:00:21 -0400541kOval_Type, or kSimple_Type, returns a value representative of all corner radii.
542If type() returns kNinePatch_Type or kComplex_Type, at least one of the
543remaining three corners has a different value.
544
545#Return corner radii for simple types ##
546
547#Example
Cary Clark80247e52018-07-11 16:18:41 -0400548#Height 100
Cary Clark224c7002018-06-27 11:00:21 -0400549 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
577Sets bounds to zero width and height at (0, 0), the origin. Sets
578corner radii to zero and sets type to kEmpty_Type.
579
580#Example
Cary Clark80247e52018-07-11 16:18:41 -0400581#Height 80
Cary Clark224c7002018-06-27 11:00:21 -0400582#Description
Cary Clark80247e52018-07-11 16:18:41 -0400583Nothing blue is drawn because Round_Rect is set to empty.
Cary Clark224c7002018-06-27 11:00:21 -0400584##
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 Clark80247e52018-07-11 16:18:41 -0400601#Line # sets Round_Rect bounds with zeroed corners ##
Cary Clark224c7002018-06-27 11:00:21 -0400602
603Sets bounds to sorted rect, and sets corner radii to zero.
604If set bounds has width and height, and sets type to kRect_Type;
605otherwise, sets type to kEmpty_Type.
606
607#Param rect bounds to set ##
608
609#Example
Cary Clark82f1f742018-06-28 08:50:35 -0400610#Height 90
Cary Clark224c7002018-06-27 11:00:21 -0400611 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 Clark82f1f742018-06-28 08:50:35 -0400627#Line # creates with zeroed bounds and corner radii ##
Cary Clark224c7002018-06-27 11:00:21 -0400628
Cary Clark82f1f742018-06-28 08:50:35 -0400629Initializes bounds at (0, 0), the origin, with zero width and height.
630Initializes corner radii to (0, 0), and sets type of kEmpty_Type.
Cary Clark224c7002018-06-27 11:00:21 -0400631
Cary Clark82f1f742018-06-28 08:50:35 -0400632#Return empty Round_Rect ##
Cary Clark224c7002018-06-27 11:00:21 -0400633
634#Example
Cary Clark82f1f742018-06-28 08:50:35 -0400635#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 Clark224c7002018-06-27 11:00:21 -0400647##
648
Cary Clark82f1f742018-06-28 08:50:35 -0400649#SeeAlso SkRRect() SkRect::MakeEmpty
Cary Clark224c7002018-06-27 11:00:21 -0400650
651#Method ##
652
653# ------------------------------------------------------------------------------
654
655#Method static SkRRect MakeRect(const SkRect& r)
656#In Constructor
Cary Clark82f1f742018-06-28 08:50:35 -0400657#Line # copies bounds and zeroes corner radii ##
Cary Clark224c7002018-06-27 11:00:21 -0400658
Cary Clark82f1f742018-06-28 08:50:35 -0400659Initializes to copy of r bounds and zeroes corner radii.
Cary Clark224c7002018-06-27 11:00:21 -0400660
Cary Clark82f1f742018-06-28 08:50:35 -0400661#Param r bounds to copy ##
662
663#Return copy of r ##
Cary Clark224c7002018-06-27 11:00:21 -0400664
665#Example
Cary Clark82f1f742018-06-28 08:50:35 -0400666#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 Clark224c7002018-06-27 11:00:21 -0400673##
674
Cary Clark82f1f742018-06-28 08:50:35 -0400675#SeeAlso setRect MakeOval MakeRectXY
Cary Clark224c7002018-06-27 11:00:21 -0400676
677#Method ##
678
679# ------------------------------------------------------------------------------
680
681#Method static SkRRect MakeOval(const SkRect& oval)
Cary Clark82f1f742018-06-28 08:50:35 -0400682#In Constructor
683#Line # creates Oval to fit bounds ##
Cary Clark224c7002018-06-27 11:00:21 -0400684
Cary Clark82f1f742018-06-28 08:50:35 -0400685Sets bounds to oval, x-axis radii to half oval.width(), and all y-axis radii
Cary Clark80247e52018-07-11 16:18:41 -0400686to half oval.height(). If oval bounds is empty, sets to kEmpty_Type.
Cary Clark82f1f742018-06-28 08:50:35 -0400687Otherwise, sets to kOval_Type.
Cary Clark224c7002018-06-27 11:00:21 -0400688
Cary Clark82f1f742018-06-28 08:50:35 -0400689#Param oval bounds of Oval ##
690
691#Return Oval ##
Cary Clark224c7002018-06-27 11:00:21 -0400692
693#Example
Cary Clark82f1f742018-06-28 08:50:35 -0400694#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 Clark224c7002018-06-27 11:00:21 -0400702##
703
Cary Clark82f1f742018-06-28 08:50:35 -0400704#SeeAlso setOval MakeRect MakeRectXY
Cary Clark224c7002018-06-27 11:00:21 -0400705
706#Method ##
707
708# ------------------------------------------------------------------------------
709
710#Method static SkRRect MakeRectXY(const SkRect& rect, SkScalar xRad, SkScalar yRad)
Cary Clark82f1f742018-06-28 08:50:35 -0400711#In Constructor
712#Line # creates rounded rectangle ##
Cary Clark224c7002018-06-27 11:00:21 -0400713
Cary Clark82f1f742018-06-28 08:50:35 -0400714Sets to rounded rectangle with the same radii for all four corners.
715If rect is empty, sets to kEmpty_Type.
716Otherwise, if xRad and yRad are zero, sets to kRect_Type.
717Otherwise, if xRad is at least half rect.width() and yRad is at least half
718rect.height(), sets to kOval_Type.
719Otherwise, sets to kSimple_Type.
Cary Clark224c7002018-06-27 11:00:21 -0400720
Cary Clark82f1f742018-06-28 08:50:35 -0400721#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 Clark224c7002018-06-27 11:00:21 -0400726
727#Example
Cary Clark82f1f742018-06-28 08:50:35 -0400728#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 Clark224c7002018-06-27 11:00:21 -0400736##
737
Cary Clark82f1f742018-06-28 08:50:35 -0400738#SeeAlso setRectXY
Cary Clark224c7002018-06-27 11:00:21 -0400739
740#Method ##
741
742# ------------------------------------------------------------------------------
743
744#Method void setOval(const SkRect& oval)
Cary Clark82f1f742018-06-28 08:50:35 -0400745#In Set
746#Line # replaces with Oval to fit bounds ##
Cary Clark224c7002018-06-27 11:00:21 -0400747
Cary Clark82f1f742018-06-28 08:50:35 -0400748Sets bounds to oval, x-axis radii to half oval.width(), and all y-axis radii
Cary Clark80247e52018-07-11 16:18:41 -0400749to half oval.height(). If oval bounds is empty, sets to kEmpty_Type.
Cary Clark82f1f742018-06-28 08:50:35 -0400750Otherwise, sets to kOval_Type.
Cary Clark224c7002018-06-27 11:00:21 -0400751
Cary Clark82f1f742018-06-28 08:50:35 -0400752#Param oval bounds of Oval ##
Cary Clark224c7002018-06-27 11:00:21 -0400753
754#Example
Cary Clark82f1f742018-06-28 08:50:35 -0400755#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 Clark224c7002018-06-27 11:00:21 -0400763##
764
Cary Clark82f1f742018-06-28 08:50:35 -0400765#SeeAlso MakeOval
Cary Clark224c7002018-06-27 11:00:21 -0400766
767#Method ##
768
769# ------------------------------------------------------------------------------
770
771#Method void setRectXY(const SkRect& rect, SkScalar xRad, SkScalar yRad)
Cary Clark82f1f742018-06-28 08:50:35 -0400772#In Set
773#Line # replaces with rounded rectangle ##
Cary Clark224c7002018-06-27 11:00:21 -0400774
Cary Clark82f1f742018-06-28 08:50:35 -0400775Sets to rounded rectangle with the same radii for all four corners.
776If rect is empty, sets to kEmpty_Type.
777Otherwise, if xRad or yRad is zero, sets to kRect_Type.
778Otherwise, if xRad is at least half rect.width() and yRad is at least half
779rect.height(), sets to kOval_Type.
780Otherwise, sets to kSimple_Type.
Cary Clark224c7002018-06-27 11:00:21 -0400781
Cary Clark82f1f742018-06-28 08:50:35 -0400782#Param rect bounds of rounded rectangle ##
783#Param xRad x-axis radius of corners ##
784#Param yRad y-axis radius of corners ##
Cary Clark224c7002018-06-27 11:00:21 -0400785
786#Example
Cary Clark82f1f742018-06-28 08:50:35 -0400787#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 Clark224c7002018-06-27 11:00:21 -0400795##
796
Cary Clark82f1f742018-06-28 08:50:35 -0400797#SeeAlso MakeRectXY SkPath::addRoundRect
Cary Clark224c7002018-06-27 11:00:21 -0400798
799#Method ##
800
801# ------------------------------------------------------------------------------
802
803#Method void setNinePatch(const SkRect& rect, SkScalar leftRad, SkScalar topRad,
804 SkScalar rightRad, SkScalar bottomRad)
Cary Clark82f1f742018-06-28 08:50:35 -0400805#In Set
806#Line # replaces with rounded rectangle ##
Cary Clark224c7002018-06-27 11:00:21 -0400807
Cary Clark82f1f742018-06-28 08:50:35 -0400808Sets bounds to rect. Sets radii to (leftRad, topRad), (rightRad, topRad),
809(rightRad, bottomRad), (leftRad, bottomRad).
Cary Clark224c7002018-06-27 11:00:21 -0400810
Cary Clark82f1f742018-06-28 08:50:35 -0400811If rect is empty, sets to kEmpty_Type.
812Otherwise, if leftRad and rightRad are zero, sets to kRect_Type.
813Otherwise, if topRad and bottomRad are zero, sets to kRect_Type.
814Otherwise, if leftRad and rightRad are equal and at least half rect.width(), and
815topRad and bottomRad are equal at least half rect.height(), sets to kOval_Type.
816Otherwise, if leftRad and rightRad are equal, and topRad and bottomRad are equal,
817sets to kSimple_Type. Otherwise, sets to kNinePatch_Type.
818
819Nine patch refers to the nine parts defined by the radii: one center rectangle,
820four 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 Clark224c7002018-06-27 11:00:21 -0400827
828#Example
Cary Clark82f1f742018-06-28 08:50:35 -0400829#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 Clark224c7002018-06-27 11:00:21 -0400845##
846
Cary Clark82f1f742018-06-28 08:50:35 -0400847#SeeAlso setRectRadii
Cary Clark224c7002018-06-27 11:00:21 -0400848
849#Method ##
850
851# ------------------------------------------------------------------------------
852
853#Method void setRectRadii(const SkRect& rect, const SkVector radii[4])
Cary Clark82f1f742018-06-28 08:50:35 -0400854#In Set
855#Line # replaces with rounded rectangle ##
Cary Clark224c7002018-06-27 11:00:21 -0400856
Cary Clark82f1f742018-06-28 08:50:35 -0400857Sets bounds to rect. Sets radii array for individual control of all for corners.
Cary Clark224c7002018-06-27 11:00:21 -0400858
Cary Clark82f1f742018-06-28 08:50:35 -0400859If rect is empty, sets to kEmpty_Type.
860Otherwise, if one of each corner radii are zero, sets to kRect_Type.
861Otherwise, if all x-axis radii are equal and at least half rect.width(), and
862all y-axis radii are equal at least half rect.height(), sets to kOval_Type.
863Otherwise, if all x-axis radii are equal, and all y-axis radii are equal,
864sets 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 Clark224c7002018-06-27 11:00:21 -0400868
869#Example
Cary Clark80247e52018-07-11 16:18:41 -0400870#Height 128
Cary Clark53498e92018-06-28 19:13:56 -0400871 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 Clark224c7002018-06-27 11:00:21 -0400888##
889
Cary Clark82f1f742018-06-28 08:50:35 -0400890#SeeAlso setNinePatch SkPath::addRoundRect
Cary Clark224c7002018-06-27 11:00:21 -0400891
892#Method ##
893
894# ------------------------------------------------------------------------------
895
896#Enum Corner
Cary Clark53498e92018-06-28 19:13:56 -0400897#Line # corner radii order ##
Cary Clark224c7002018-06-27 11:00:21 -0400898
899#Code
900 enum Corner {
901 kUpperLeft_Corner,
902 kUpperRight_Corner,
903 kLowerRight_Corner,
904 kLowerLeft_Corner,
905 };
906##
907
908The radii are stored: top-left, top-right, bottom-right, bottom-left.
909
Cary Clark53498e92018-06-28 19:13:56 -0400910#Const kUpperLeft_Corner 0
911#Line # index of top-left corner radii ##
Cary Clark224c7002018-06-27 11:00:21 -0400912##
Cary Clark53498e92018-06-28 19:13:56 -0400913#Const kUpperRight_Corner 1
914#Line # index of top-right corner radii ##
Cary Clark224c7002018-06-27 11:00:21 -0400915##
Cary Clark53498e92018-06-28 19:13:56 -0400916#Const kLowerRight_Corner 2
917#Line # index of bottom-right corner radii ##
Cary Clark224c7002018-06-27 11:00:21 -0400918##
Cary Clark53498e92018-06-28 19:13:56 -0400919#Const kLowerLeft_Corner 3
920#Line # index of bottom-left corner radii ##
Cary Clark224c7002018-06-27 11:00:21 -0400921##
922
923#Example
Cary Clark53498e92018-06-28 19:13:56 -0400924#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 Clark224c7002018-06-27 11:00:21 -0400941##
942
Cary Clark53498e92018-06-28 19:13:56 -0400943#SeeAlso radii
Cary Clark224c7002018-06-27 11:00:21 -0400944
945#Enum ##
946
947# ------------------------------------------------------------------------------
948
949#Method const SkRect& rect() const
Cary Clark53498e92018-06-28 19:13:56 -0400950#In Property
951#Line # returns bounds ##
952Returns bounds. Bounds may have zero width or zero height. Bounds right is
953greater than or equal to left; bounds bottom is greater than or equal to top.
954Result is identical to getBounds.
Cary Clark224c7002018-06-27 11:00:21 -0400955
Cary Clark53498e92018-06-28 19:13:56 -0400956#Return bounding box ##
Cary Clark224c7002018-06-27 11:00:21 -0400957
958#Example
Cary Clark53498e92018-06-28 19:13:56 -0400959 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
964left bounds: (nan) 0
965left bounds: (inf) 0
966left bounds: (100) 60
967left bounds: (50) 50
968left bounds: (25) 25
969##
Cary Clark224c7002018-06-27 11:00:21 -0400970##
971
Cary Clark53498e92018-06-28 19:13:56 -0400972#SeeAlso getBounds
Cary Clark224c7002018-06-27 11:00:21 -0400973
974#Method ##
975
976# ------------------------------------------------------------------------------
977
978#Method SkVector radii(Corner corner) const
Cary Clark53498e92018-06-28 19:13:56 -0400979#In Property
980#Line # returns x-axis and y-axis radii for one corner ##
981Returns Scalar pair for radius of curve on x-axis and y-axis for one corner.
982Both radii may be zero. If not zero, both are positive and finite.
Cary Clark224c7002018-06-27 11:00:21 -0400983
Cary Clark224c7002018-06-27 11:00:21 -0400984
Cary Clark53498e92018-06-28 19:13:56 -0400985#Param corner one of: kUpperLeft_Corner, kUpperRight_Corner,
986 kLowerRight_Corner, kLowerLeft_Corner
Cary Clark224c7002018-06-27 11:00:21 -0400987##
988
Cary Clark53498e92018-06-28 19:13:56 -0400989#Return x-axis and y-axis radii for one corner ##
990
991#Example
992#Description
993Finite values are scaled proportionately to fit; other values are set to zero.
Cary Clark80247e52018-07-11 16:18:41 -0400994Scaled values cannot be larger than 25, half the bounding Round_Rect width.
Cary Clark53498e92018-06-28 19:13:56 -0400995Small scaled values are halved to scale in proportion to the y-axis corner
996radius, 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
1003left corner: (nan) 0
1004left corner: (inf) 0
1005left corner: (100) 25
1006left corner: (50) 25
1007left corner: (25) 12.5
1008##
1009##
1010
1011#SeeAlso Corner
Cary Clark224c7002018-06-27 11:00:21 -04001012
1013#Method ##
1014
1015# ------------------------------------------------------------------------------
1016
1017#Method const SkRect& getBounds() const
Cary Clark53498e92018-06-28 19:13:56 -04001018#In Property
1019#Line # returns bounds ##
1020Returns bounds. Bounds may have zero width or zero height. Bounds right is
1021greater than or equal to left; bounds bottom is greater than or equal to top.
1022Result is identical to rect().
Cary Clark224c7002018-06-27 11:00:21 -04001023
Cary Clark53498e92018-06-28 19:13:56 -04001024#Return bounding box ##
Cary Clark224c7002018-06-27 11:00:21 -04001025
1026#Example
Cary Clark53498e92018-06-28 19:13:56 -04001027#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 Clark224c7002018-06-27 11:00:21 -04001034##
1035
Cary Clark53498e92018-06-28 19:13:56 -04001036#SeeAlso rect
Cary Clark224c7002018-06-27 11:00:21 -04001037
1038#Method ##
1039
1040# ------------------------------------------------------------------------------
1041
1042#Method bool operator==(const SkRRect& a, const SkRRect& b)
1043#In Operator
Cary Clark53498e92018-06-28 19:13:56 -04001044#Line # returns true if members are equal ##
1045Returns true if bounds and radii in a are equal to bounds and radii in b.
Cary Clark224c7002018-06-27 11:00:21 -04001046
Cary Clark53498e92018-06-28 19:13:56 -04001047a and b are not equal if either contain NaN. a and b are equal if members
1048contain zeroes width different signs.
Cary Clark224c7002018-06-27 11:00:21 -04001049
Cary Clark53498e92018-06-28 19:13:56 -04001050#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 Clark224c7002018-06-27 11:00:21 -04001054
1055#Example
Cary Clark53498e92018-06-28 19:13:56 -04001056 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 Clark224c7002018-06-27 11:00:21 -04001068##
1069
Cary Clark53498e92018-06-28 19:13:56 -04001070#SeeAlso operator!=(const SkRRect& a, const SkRRect& b)
Cary Clark224c7002018-06-27 11:00:21 -04001071
1072#Method ##
1073
1074# ------------------------------------------------------------------------------
1075
1076#Method bool operator!=(const SkRRect& a, const SkRRect& b)
1077#In Operator
Cary Clark53498e92018-06-28 19:13:56 -04001078#Line # returns true if members are unequal ##
1079Returns true if bounds and radii in a are not equal to bounds and radii in b.
Cary Clark224c7002018-06-27 11:00:21 -04001080
Cary Clark53498e92018-06-28 19:13:56 -04001081a and b are not equal if either contain NaN. a and b are equal if members
1082contain zeroes width different signs.
Cary Clark224c7002018-06-27 11:00:21 -04001083
Cary Clark53498e92018-06-28 19:13:56 -04001084#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 Clark224c7002018-06-27 11:00:21 -04001088
1089#Example
Cary Clark53498e92018-06-28 19:13:56 -04001090 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 Clark224c7002018-06-27 11:00:21 -04001102##
1103
Cary Clark53498e92018-06-28 19:13:56 -04001104#SeeAlso operator==(const SkRRect& a, const SkRRect& b)
Cary Clark224c7002018-06-27 11:00:21 -04001105
1106#Method ##
1107
1108# ------------------------------------------------------------------------------
1109
1110#Method void inset(SkScalar dx, SkScalar dy, SkRRect* dst) const
Cary Clark53498e92018-06-28 19:13:56 -04001111#In Inset_Outset_Offset
1112#Line # insets bounds and radii ##
Cary Clark224c7002018-06-27 11:00:21 -04001113
Cary Clark80247e52018-07-11 16:18:41 -04001114Copies Round_Rect to dst, then insets dst bounds by dx and dy, and adjusts dst
1115radii by dx and dy. dx and dy may be positive, negative, or zero. dst may be
1116Round_Rect.
1117
1118If either corner radius is zero, the corner has no curvature and is unchanged.
1119Otherwise, if adjusted radius becomes negative, pins radius to zero.
1120If dx exceeds half dst bounds width, dst bounds left and right are set to
1121bounds x-axis center. If dy exceeds half dst bounds height, dst bounds top and
1122bottom are set to bounds y-axis center.
1123
1124If dx or dy cause the bounds to become infinite, dst bounds is zeroed.
Cary Clark224c7002018-06-27 11:00:21 -04001125
Cary Clark53498e92018-06-28 19:13:56 -04001126#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 Clark224c7002018-06-27 11:00:21 -04001129
1130#Example
Cary Clark53498e92018-06-28 19:13:56 -04001131 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 Clark224c7002018-06-27 11:00:21 -04001139##
1140
Cary Clark53498e92018-06-28 19:13:56 -04001141#SeeAlso outset offset makeOffset
Cary Clark224c7002018-06-27 11:00:21 -04001142
1143#Method ##
1144
1145# ------------------------------------------------------------------------------
1146
1147#Method void inset(SkScalar dx, SkScalar dy)
Cary Clark53498e92018-06-28 19:13:56 -04001148#In Inset_Outset_Offset
1149#Line # insets bounds and radii ##
Cary Clark80247e52018-07-11 16:18:41 -04001150Insets bounds by dx and dy, and adjusts radii by dx and dy. dx and dy may be
1151positive, negative, or zero.
1152
1153If either corner radius is zero, the corner has no curvature and is unchanged.
1154Otherwise, if adjusted radius becomes negative, pins radius to zero.
1155If dx exceeds half bounds width, bounds left and right are set to
1156bounds x-axis center. If dy exceeds half bounds height, bounds top and
1157bottom are set to bounds y-axis center.
1158
1159If dx or dy cause the bounds to become infinite, bounds is zeroed.
Cary Clark224c7002018-06-27 11:00:21 -04001160
Cary Clark53498e92018-06-28 19:13:56 -04001161#Param dx added to rect().fLeft, and subtracted from rect().fRight ##
1162#Param dy added to rect().fTop, and subtracted from rect().fBottom ##
Cary Clark224c7002018-06-27 11:00:21 -04001163
1164#Example
Cary Clark53498e92018-06-28 19:13:56 -04001165 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 Clark224c7002018-06-27 11:00:21 -04001173##
1174
Cary Clark53498e92018-06-28 19:13:56 -04001175#SeeAlso outset offset makeOffset
1176
Cary Clark224c7002018-06-27 11:00:21 -04001177
1178#Method ##
1179
1180# ------------------------------------------------------------------------------
1181
1182#Method void outset(SkScalar dx, SkScalar dy, SkRRect* dst) const
Cary Clark53498e92018-06-28 19:13:56 -04001183#In Inset_Outset_Offset
1184#Line # outsets bounds and radii ##
Cary Clark224c7002018-06-27 11:00:21 -04001185
Cary Clark80247e52018-07-11 16:18:41 -04001186Outsets dst bounds by dx and dy, and adjusts radii by dx and dy. dx and dy may be
1187positive, negative, or zero.
1188
1189If either corner radius is zero, the corner has no curvature and is unchanged.
1190Otherwise, if adjusted radius becomes negative, pins radius to zero.
1191If dx exceeds half dst bounds width, dst bounds left and right are set to
1192bounds x-axis center. If dy exceeds half dst bounds height, dst bounds top and
1193bottom are set to bounds y-axis center.
1194
1195If dx or dy cause the bounds to become infinite, dst bounds is zeroed.
Cary Clark224c7002018-06-27 11:00:21 -04001196
Cary Clark53498e92018-06-28 19:13:56 -04001197#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 Clark224c7002018-06-27 11:00:21 -04001200
1201#Example
Cary Clark53498e92018-06-28 19:13:56 -04001202 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 Clark224c7002018-06-27 11:00:21 -04001210##
1211
Cary Clark53498e92018-06-28 19:13:56 -04001212#SeeAlso inset offset makeOffset
1213
Cary Clark224c7002018-06-27 11:00:21 -04001214
1215#Method ##
1216
1217# ------------------------------------------------------------------------------
1218
1219#Method void outset(SkScalar dx, SkScalar dy)
Cary Clark53498e92018-06-28 19:13:56 -04001220#In Inset_Outset_Offset
1221#Line # outsets bounds and radii ##
Cary Clark224c7002018-06-27 11:00:21 -04001222
Cary Clark80247e52018-07-11 16:18:41 -04001223Outsets bounds by dx and dy, and adjusts radii by dx and dy. dx and dy may be
1224positive, negative, or zero.
1225
1226If either corner radius is zero, the corner has no curvature and is unchanged.
1227Otherwise, if adjusted radius becomes negative, pins radius to zero.
1228If dx exceeds half bounds width, bounds left and right are set to
1229bounds x-axis center. If dy exceeds half bounds height, bounds top and
1230bottom are set to bounds y-axis center.
1231
1232If dx or dy cause the bounds to become infinite, bounds is zeroed.
1233
Cary Clark53498e92018-06-28 19:13:56 -04001234#Param dx subtracted from rect().fLeft, and added to rect().fRight ##
1235#Param dy subtracted from rect().fTop, and added to rect().fBottom ##
Cary Clark224c7002018-06-27 11:00:21 -04001236
1237#Example
Cary Clark53498e92018-06-28 19:13:56 -04001238 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 Clark224c7002018-06-27 11:00:21 -04001246##
1247
Cary Clark53498e92018-06-28 19:13:56 -04001248#SeeAlso inset offset makeOffset
Cary Clark224c7002018-06-27 11:00:21 -04001249
1250#Method ##
1251
1252# ------------------------------------------------------------------------------
1253
1254#Method void offset(SkScalar dx, SkScalar dy)
Cary Clark53498e92018-06-28 19:13:56 -04001255#In Inset_Outset_Offset
1256#Line # offsets bounds and radii ##
Cary Clark224c7002018-06-27 11:00:21 -04001257
Cary Clark80247e52018-07-11 16:18:41 -04001258Translates Round_Rect by (dx, dy).
Cary Clark224c7002018-06-27 11:00:21 -04001259
Cary Clark53498e92018-06-28 19:13:56 -04001260#Param dx offset added to rect().fLeft and rect().fRight ##
1261#Param dy offset added to rect().fTop and rect().fBottom ##
Cary Clark224c7002018-06-27 11:00:21 -04001262
1263#Example
Cary Clark53498e92018-06-28 19:13:56 -04001264 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 Clark224c7002018-06-27 11:00:21 -04001272##
1273
Cary Clark53498e92018-06-28 19:13:56 -04001274#SeeAlso makeOffset inset outset
Cary Clark224c7002018-06-27 11:00:21 -04001275
1276#Method ##
1277
1278# ------------------------------------------------------------------------------
1279
1280#Method SkRRect SK_WARN_UNUSED_RESULT makeOffset(SkScalar dx, SkScalar dy) const
Cary Clark53498e92018-06-28 19:13:56 -04001281#In Inset_Outset_Offset
1282#Line # offsets bounds and radii ##
Cary Clark224c7002018-06-27 11:00:21 -04001283
Cary Clark80247e52018-07-11 16:18:41 -04001284Returns Round_Rect translated by (dx, dy).
1285
Cary Clark53498e92018-06-28 19:13:56 -04001286#Param dx offset added to rect().fLeft and rect().fRight ##
1287#Param dy offset added to rect().fTop and rect().fBottom ##
Cary Clark224c7002018-06-27 11:00:21 -04001288
Cary Clark53498e92018-06-28 19:13:56 -04001289#Return Round_Rect bounds offset by (dx, dy), with unchanged corner radii ##
Cary Clark224c7002018-06-27 11:00:21 -04001290
1291#Example
Cary Clark53498e92018-06-28 19:13:56 -04001292 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 Clark224c7002018-06-27 11:00:21 -04001300##
1301
Cary Clark53498e92018-06-28 19:13:56 -04001302#SeeAlso offset inset outset
Cary Clark224c7002018-06-27 11:00:21 -04001303
1304#Method ##
1305
1306# ------------------------------------------------------------------------------
1307
1308#Method bool contains(const SkRect& rect) const
Cary Clark53498e92018-06-28 19:13:56 -04001309#In Intersection
1310#Line # returns true if Rect is inside ##
Cary Clark224c7002018-06-27 11:00:21 -04001311
Cary Clark53498e92018-06-28 19:13:56 -04001312Returns true if rect is inside the bounds and corner radii, and if
1313Round_Rect and rect are not empty.
Cary Clark224c7002018-06-27 11:00:21 -04001314
Cary Clark53498e92018-06-28 19:13:56 -04001315#Param rect area tested for containment ##
Cary Clark224c7002018-06-27 11:00:21 -04001316
Cary Clark53498e92018-06-28 19:13:56 -04001317#Return true if Round_Rect contains rect ##
Cary Clark224c7002018-06-27 11:00:21 -04001318
1319#Example
Cary Clark80247e52018-07-11 16:18:41 -04001320#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 Clark224c7002018-06-27 11:00:21 -04001336##
1337
Cary Clark53498e92018-06-28 19:13:56 -04001338#SeeAlso SkRect::contains
Cary Clark224c7002018-06-27 11:00:21 -04001339
1340#Method ##
1341
1342# ------------------------------------------------------------------------------
1343
1344#Method bool isValid() const
Cary Clark53498e92018-06-28 19:13:56 -04001345#In Utility
Cary Clark80247e52018-07-11 16:18:41 -04001346#Line # returns if type() matches bounds and radii ##
1347Returns true if bounds and radii values are finite and describe a Round_Rect
1348Type that matches getType. All Round_Rect methods construct valid types,
1349even if the input values are not valid. Invalid Round_Rect data can only
1350be generated by corrupting memory.
Cary Clark224c7002018-06-27 11:00:21 -04001351
Cary Clark80247e52018-07-11 16:18:41 -04001352#Return true if bounds and radii match type() ##
Cary Clark224c7002018-06-27 11:00:21 -04001353
1354#Example
Cary Clark80247e52018-07-11 16:18:41 -04001355#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 Clark224c7002018-06-27 11:00:21 -04001368##
1369
Cary Clark80247e52018-07-11 16:18:41 -04001370#SeeAlso Type getType
Cary Clark224c7002018-06-27 11:00:21 -04001371
1372#Method ##
1373
1374# ------------------------------------------------------------------------------
1375
1376#Const kSizeInMemory 48
Cary Clark80247e52018-07-11 16:18:41 -04001377#Line # storage space for Round_Rect ##
Cary Clark224c7002018-06-27 11:00:21 -04001378
Cary Clark80247e52018-07-11 16:18:41 -04001379Space required to serialize SkRRect into a buffer. Always a multiple of four.
Cary Clark224c7002018-06-27 11:00:21 -04001380
1381#Const ##
1382
1383# ------------------------------------------------------------------------------
1384
1385#Method size_t writeToMemory(void* buffer) const
Cary Clark53498e92018-06-28 19:13:56 -04001386#In Utility
Cary Clark80247e52018-07-11 16:18:41 -04001387#Line # writes Round_Rect to buffer ##
Cary Clark224c7002018-06-27 11:00:21 -04001388
Cary Clark80247e52018-07-11 16:18:41 -04001389Writes Round_Rect to buffer. Writes kSizeInMemory bytes, and returns
1390kSizeInMemory, the number of bytes written.
Cary Clark224c7002018-06-27 11:00:21 -04001391
Cary Clark80247e52018-07-11 16:18:41 -04001392#Param buffer storage for Round_Rect ##
Cary Clark224c7002018-06-27 11:00:21 -04001393
Cary Clark80247e52018-07-11 16:18:41 -04001394#Return bytes written, kSizeInMemory ##
Cary Clark224c7002018-06-27 11:00:21 -04001395
1396#Example
Cary Clark80247e52018-07-11 16:18:41 -04001397#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 Clark224c7002018-06-27 11:00:21 -04001412##
1413
Cary Clark80247e52018-07-11 16:18:41 -04001414#SeeAlso readFromMemory
Cary Clark224c7002018-06-27 11:00:21 -04001415
1416#Method ##
1417
1418# ------------------------------------------------------------------------------
1419
1420#Method size_t readFromMemory(const void* buffer, size_t length)
Cary Clark53498e92018-06-28 19:13:56 -04001421#In Utility
Cary Clark80247e52018-07-11 16:18:41 -04001422#Line # reads Round_Rect from buffer ##
Cary Clark224c7002018-06-27 11:00:21 -04001423
Cary Clark80247e52018-07-11 16:18:41 -04001424Reads Round_Rect from buffer, reading kSizeInMemory bytes.
1425Returns kSizeInMemory, bytes read if length is at least kSizeInMemory.
1426Otherwise, returns zero.
Cary Clark224c7002018-06-27 11:00:21 -04001427
Cary Clark80247e52018-07-11 16:18:41 -04001428#Param buffer memory to read from ##
1429#Param length size of buffer ##
Cary Clark224c7002018-06-27 11:00:21 -04001430
Cary Clark80247e52018-07-11 16:18:41 -04001431#Return bytes read, or 0 if length is less than kSizeInMemory
Cary Clark224c7002018-06-27 11:00:21 -04001432##
1433
1434#Example
Cary Clark80247e52018-07-11 16:18:41 -04001435#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 Clark224c7002018-06-27 11:00:21 -04001452##
1453
Cary Clark80247e52018-07-11 16:18:41 -04001454#SeeAlso writeToMemory
Cary Clark224c7002018-06-27 11:00:21 -04001455
1456#Method ##
1457
1458# ------------------------------------------------------------------------------
1459
1460#Method bool transform(const SkMatrix& matrix, SkRRect* dst) const
Cary Clark53498e92018-06-28 19:13:56 -04001461#In Inset_Outset_Offset
1462#Line # scales and offsets into copy ##
Cary Clark224c7002018-06-27 11:00:21 -04001463
Cary Clark53498e92018-06-28 19:13:56 -04001464Transforms by Round_Rect by matrix, storing result in dst.
1465Returns true if Round_Rect transformed can be represented by another Round_Rect.
1466Returns false if matrix contains transformations other than scale and translate.
Cary Clark224c7002018-06-27 11:00:21 -04001467
Cary Clark53498e92018-06-28 19:13:56 -04001468Asserts in debug builds if Round_Rect equals dst.
Cary Clark224c7002018-06-27 11:00:21 -04001469
Cary Clark53498e92018-06-28 19:13:56 -04001470#Param matrix SkMatrix specifying the transform ##
1471#Param dst SkRRect to store the result ##
1472
1473#Return true if transformation succeeded.
Cary Clark224c7002018-06-27 11:00:21 -04001474##
1475
1476#Example
Cary Clark80247e52018-07-11 16:18:41 -04001477#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 Clark224c7002018-06-27 11:00:21 -04001493##
1494
Cary Clark80247e52018-07-11 16:18:41 -04001495#SeeAlso SkPath::transform
Cary Clark224c7002018-06-27 11:00:21 -04001496
1497#Method ##
1498
1499# ------------------------------------------------------------------------------
1500
1501#Method void dump(bool asHex) const
Cary Clark53498e92018-06-28 19:13:56 -04001502#In Utility
1503#Line # sends text representation to standard output ##
1504Writes text representation of Round_Rect to standard output.
1505Set asHex true to generate exact binary representations
1506of floating point numbers.
Cary Clark224c7002018-06-27 11:00:21 -04001507
Cary Clark53498e92018-06-28 19:13:56 -04001508#Param asHex true if SkScalar values are written as hexadecimal ##
Cary Clark224c7002018-06-27 11:00:21 -04001509
1510#Example
Cary Clark53498e92018-06-28 19:13:56 -04001511SkRRect rrect = SkRRect::MakeRect({6.f / 7, 2.f / 3, 6.f / 7, 2.f / 3});
1512for (bool dumpAsHex : { false, true } ) {
1513 rrect.dump(dumpAsHex);
1514}
1515#StdOut
1516SkRect::MakeLTRB(0.857143f, 0.666667f, 0.857143f, 0.666667f);
1517const SkPoint corners[] = {
1518 { 0, 0 },
1519 { 0, 0 },
1520 { 0, 0 },
1521 { 0, 0 },
1522};
1523SkRect::MakeLTRB(SkBits2Float(0x3f5b6db7), /* 0.857143 */
1524 SkBits2Float(0x3f2aaaab), /* 0.666667 */
1525 SkBits2Float(0x3f5b6db7), /* 0.857143 */
1526 SkBits2Float(0x3f2aaaab) /* 0.666667 */);
1527const 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 Clark224c7002018-06-27 11:00:21 -04001534##
1535
Cary Clark53498e92018-06-28 19:13:56 -04001536#SeeAlso dumpHex SkRect::dump SkPath::dump SkPathMeasure::dump
Cary Clark224c7002018-06-27 11:00:21 -04001537
1538#Method ##
1539
1540# ------------------------------------------------------------------------------
1541
1542#Method void dump() const
Cary Clark53498e92018-06-28 19:13:56 -04001543#In Utility
1544#Line # sends text representation using floats to standard output ##
1545Writes text representation of Round_Rect to standard output. The representation
1546may be directly compiled as C++ code. Floating point values are written
1547with limited precision; it may not be possible to reconstruct original
1548Round_Rect from output.
Cary Clark224c7002018-06-27 11:00:21 -04001549
1550#Example
Cary Clark53498e92018-06-28 19:13:56 -04001551SkRRect rrect = SkRRect::MakeRect({6.f / 7, 2.f / 3, 6.f / 7, 2.f / 3});
1552rrect.dump();
1553SkRect bounds = SkRect::MakeLTRB(0.857143f, 0.666667f, 0.857143f, 0.666667f);
1554const SkPoint corners[] = {
1555 { 0, 0 },
1556 { 0, 0 },
1557 { 0, 0 },
1558 { 0, 0 },
1559};
1560SkRRect copy;
1561copy.setRectRadii(bounds, corners);
1562SkDebugf("rrect is " "%s" "equal to copy\n", rrect == copy ? "" : "not ");
1563#StdOut
1564SkRect::MakeLTRB(0.857143f, 0.666667f, 0.857143f, 0.666667f);
1565const SkPoint corners[] = {
1566 { 0, 0 },
1567 { 0, 0 },
1568 { 0, 0 },
1569 { 0, 0 },
1570};
1571rrect is not equal to copy
1572##
Cary Clark224c7002018-06-27 11:00:21 -04001573##
1574
Cary Clark53498e92018-06-28 19:13:56 -04001575#SeeAlso dumpHex SkRect::dump SkPath::dump SkPathMeasure::dump
Cary Clark224c7002018-06-27 11:00:21 -04001576
1577#Method ##
1578
1579# ------------------------------------------------------------------------------
1580
1581#Method void dumpHex() const
Cary Clark53498e92018-06-28 19:13:56 -04001582#In Utility
1583#Line # sends text representation using hexadecimal to standard output ##
1584Writes text representation of Round_Rect to standard output. The representation
1585may be directly compiled as C++ code. Floating point values are written
1586in hexadecimal to preserve their exact bit pattern. The output reconstructs the
1587original Round_Rect.
Cary Clark224c7002018-06-27 11:00:21 -04001588
1589#Example
Cary Clark53498e92018-06-28 19:13:56 -04001590SkRRect rrect = SkRRect::MakeRect({6.f / 7, 2.f / 3, 6.f / 7, 2.f / 3});
1591rrect.dumpHex();
1592SkRect bounds = SkRect::MakeLTRB(SkBits2Float(0x3f5b6db7), /* 0.857143 */
1593 SkBits2Float(0x3f2aaaab), /* 0.666667 */
1594 SkBits2Float(0x3f5b6db7), /* 0.857143 */
1595 SkBits2Float(0x3f2aaaab) /* 0.666667 */);
1596const 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};
1602SkRRect copy;
1603copy.setRectRadii(bounds, corners);
1604SkDebugf("rrect is " "%s" "equal to copy\n", rrect == copy ? "" : "not ");
1605#StdOut
1606SkRect::MakeLTRB(SkBits2Float(0x3f5b6db7), /* 0.857143 */
1607 SkBits2Float(0x3f2aaaab), /* 0.666667 */
1608 SkBits2Float(0x3f5b6db7), /* 0.857143 */
1609 SkBits2Float(0x3f2aaaab) /* 0.666667 */);
1610const 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};
1616rrect is equal to copy
1617##
Cary Clark224c7002018-06-27 11:00:21 -04001618##
1619
Cary Clark53498e92018-06-28 19:13:56 -04001620#SeeAlso dump SkRect::dumpHex SkPath::dumpHex
Cary Clark224c7002018-06-27 11:00:21 -04001621
1622#Method ##
1623
1624#Class SkRRect ##
1625
1626#Topic RRect ##