blob: d6dc20d44b73132baea48fe8b3476d81dfbeda4e [file] [log] [blame]
Cary Clarkbc5697d2017-10-04 14:31:33 -04001#Topic Rect
Cary Clark137b8742018-05-30 09:21:49 -04002#Alias Rects ##
3#Alias Rect_Reference ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04004
5#Struct SkRect
6
Cary Clark61313f32018-10-08 14:57:48 -04007#Code
8#Populate
9##
10
Cary Clark7fc1d122017-10-09 14:07:42 -040011SkRect holds four SkScalar coordinates describing the upper and
Cary Clark682c58d2018-05-16 07:07:07 -040012lower bounds of a rectangle. SkRect may be created from outer bounds or
Cary Clark7fc1d122017-10-09 14:07:42 -040013from position, width, and height. SkRect describes an area; if its right
14is less than or equal to its left, or if its bottom is less than or equal to
15its top, it is considered empty.
16
17# move to topic about MakeIWH and friends
18SkRect can be constructed from int values to avoid compiler warnings that
19integer input cannot convert to SkScalar without loss of precision.
20
Cary Clarkbc5697d2017-10-04 14:31:33 -040021#Member SkScalar fLeft
Cary Clark08895c42018-02-01 09:37:32 -050022#Line # smaller x-axis bounds ##
Cary Clark7fc1d122017-10-09 14:07:42 -040023May contain any value, including infinities and NaN. The smaller of the
24horizontal values when sorted. When equal to or greater than fRight, Rect is empty.
Cary Clarkbc5697d2017-10-04 14:31:33 -040025##
26
27#Member SkScalar fTop
Cary Clark08895c42018-02-01 09:37:32 -050028#Line # smaller y-axis bounds ##
Cary Clark7fc1d122017-10-09 14:07:42 -040029May contain any value, including infinities and NaN. The smaller of the
30vertical values when sorted. When equal to or greater than fBottom, Rect is empty.
Cary Clarkbc5697d2017-10-04 14:31:33 -040031##
32
33#Member SkScalar fRight
Cary Clark08895c42018-02-01 09:37:32 -050034#Line # larger x-axis bounds ##
Cary Clark7fc1d122017-10-09 14:07:42 -040035May contain any value, including infinities and NaN. The larger of the
36horizontal values when sorted. When equal to or less than fLeft, Rect is empty.
Cary Clarkbc5697d2017-10-04 14:31:33 -040037##
38
39#Member SkScalar fBottom
Cary Clark08895c42018-02-01 09:37:32 -050040#Line # larger y-axis bounds ##
Cary Clark7fc1d122017-10-09 14:07:42 -040041May contain any value, including infinities and NaN. The larger of the
42vertical values when sorted. When equal to or less than fTop, Rect is empty.
Cary Clarkbc5697d2017-10-04 14:31:33 -040043##
44
45# ------------------------------------------------------------------------------
46
Cary Clark61313f32018-10-08 14:57:48 -040047#Method static constexpr SkRect MakeEmpty()
Cary Clarkbc5697d2017-10-04 14:31:33 -040048
Cary Clark61313f32018-10-08 14:57:48 -040049#In Constructors
Cary Clarkab2621d2018-01-30 10:08:57 -050050#Line # constructs from bounds of (0, 0, 0, 0) ##
Cary Clark7fc1d122017-10-09 14:07:42 -040051Returns constructed Rect set to (0, 0, 0, 0).
52Many other rectangles are empty; if left is equal to or greater than right,
53or if top is equal to or greater than bottom. Setting all members to zero
54is a convenience, but does not designate a special empty rectangle.
Cary Clark682c58d2018-05-16 07:07:07 -040055
Cary Clark7fc1d122017-10-09 14:07:42 -040056#Return bounds (0, 0, 0, 0) ##
Cary Clarkbc5697d2017-10-04 14:31:33 -040057
58#Example
Cary Clark154beea2017-10-26 07:58:48 -040059 SkRect rect = SkRect::MakeEmpty();
60 SkDebugf("MakeEmpty isEmpty: %s\n", rect.isEmpty() ? "true" : "false");
61 rect.offset(10, 10);
62 SkDebugf("offset rect isEmpty: %s\n", rect.isEmpty() ? "true" : "false");
63 rect.inset(10, 10);
64 SkDebugf("inset rect isEmpty: %s\n", rect.isEmpty() ? "true" : "false");
65 rect.outset(20, 20);
66 SkDebugf("outset rect isEmpty: %s\n", rect.isEmpty() ? "true" : "false");
67#StdOut
68MakeEmpty isEmpty: true
69offset rect isEmpty: true
70inset rect isEmpty: true
71outset rect isEmpty: false
72##
Cary Clarkbc5697d2017-10-04 14:31:33 -040073##
74
Mike Reed274218e2018-01-08 15:05:02 -050075#SeeAlso isEmpty setEmpty SkIRect::MakeEmpty
Cary Clark884dd7d2017-10-11 10:37:52 -040076
77##
78
79# ------------------------------------------------------------------------------
80
Cary Clark61313f32018-10-08 14:57:48 -040081#Method static constexpr SkRect MakeWH(SkScalar w, SkScalar h)
Cary Clarkbc5697d2017-10-04 14:31:33 -040082
Cary Clark61313f32018-10-08 14:57:48 -040083#In Constructors
Cary Clarkab2621d2018-01-30 10:08:57 -050084#Line # constructs from SkScalar input returning (0, 0, width, height) ##
Cary Clark7fc1d122017-10-09 14:07:42 -040085Returns constructed Rect set to SkScalar values (0, 0, w, h). Does not
86validate input; w or h may be negative.
Cary Clarkbc5697d2017-10-04 14:31:33 -040087
Cary Clark7fc1d122017-10-09 14:07:42 -040088Passing integer values may generate a compiler warning since Rect cannot
89represent 32-bit integers exactly. Use SkIRect for an exact integer rectangle.
90
91#Param w SkScalar width of constructed Rect ##
92#Param h SkScalar height of constructed Rect ##
93
94#Return bounds (0, 0, w, h) ##
Cary Clarkbc5697d2017-10-04 14:31:33 -040095
96#Example
Cary Clark154beea2017-10-26 07:58:48 -040097 SkRect rect1 = SkRect::MakeWH(25, 35);
98 SkRect rect2 = SkRect::MakeIWH(25, 35);
99 SkRect rect3 = SkRect::MakeXYWH(0, 0, 25, 35);
100 SkRect rect4 = SkRect::MakeLTRB(0, 0, 25, 35);
101 SkDebugf("all %s" "equal\n", rect1 == rect2 && rect2 == rect3 && rect3 == rect4 ?
Cary Clark7fc1d122017-10-09 14:07:42 -0400102 "" : "not ");
103#StdOut
104all equal
105##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400106##
107
Cary Clark7fc1d122017-10-09 14:07:42 -0400108#SeeAlso MakeSize MakeXYWH MakeIWH setWH SkIRect::MakeWH
Cary Clarkbc5697d2017-10-04 14:31:33 -0400109
110##
111
112# ------------------------------------------------------------------------------
113
Cary Clark61313f32018-10-08 14:57:48 -0400114#Method static SkRect MakeIWH(int w, int h)
Cary Clarkbc5697d2017-10-04 14:31:33 -0400115
Cary Clark61313f32018-10-08 14:57:48 -0400116#In Constructors
Cary Clarkab2621d2018-01-30 10:08:57 -0500117#Line # constructs from int input returning (0, 0, width, height) ##
Cary Clark7fc1d122017-10-09 14:07:42 -0400118Returns constructed Rect set to integer values (0, 0, w, h). Does not validate
119input; w or h may be negative.
Cary Clarkbc5697d2017-10-04 14:31:33 -0400120
Cary Clark7fc1d122017-10-09 14:07:42 -0400121Use to avoid a compiler warning that input may lose precision when stored.
122Use SkIRect for an exact integer rectangle.
123
124#Param w integer width of constructed Rect ##
125#Param h integer height of constructed Rect ##
126
127#Return bounds (0, 0, w, h) ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400128
129#Example
Cary Clark154beea2017-10-26 07:58:48 -0400130 SkIRect i_rect = SkIRect::MakeWH(25, 35);
131 SkRect f_rect = SkRect::MakeIWH(25, 35);
132 SkDebugf("i_rect width: %d f_rect width:%g\n", i_rect.width(), f_rect.width());
133 i_rect = SkIRect::MakeWH(125000111, 0);
134 f_rect = SkRect::MakeIWH(125000111, 0);
135 SkDebugf("i_rect width: %d f_rect width:%.0f\n", i_rect.width(), f_rect.width());
Cary Clark7fc1d122017-10-09 14:07:42 -0400136#StdOut
Cary Clark154beea2017-10-26 07:58:48 -0400137i_rect width: 25 f_rect width:25
Cary Clark7fc1d122017-10-09 14:07:42 -0400138i_rect width: 125000111 f_rect width:125000112
139##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400140##
141
Cary Clark7fc1d122017-10-09 14:07:42 -0400142#SeeAlso MakeXYWH MakeWH isetWH SkIRect::MakeWH
Cary Clarkbc5697d2017-10-04 14:31:33 -0400143
144##
145
146# ------------------------------------------------------------------------------
147
Cary Clark61313f32018-10-08 14:57:48 -0400148#Method static constexpr SkRect MakeSize(const SkSize& size)
Cary Clarkbc5697d2017-10-04 14:31:33 -0400149
Cary Clark61313f32018-10-08 14:57:48 -0400150#In Constructors
Cary Clarkab2621d2018-01-30 10:08:57 -0500151#Line # constructs from Size returning (0, 0, width, height) ##
Cary Clark7fc1d122017-10-09 14:07:42 -0400152Returns constructed Rect set to (0, 0, size.width(), size.height()). Does not
153validate input; size.width() or size.height() may be negative.
Cary Clarkbc5697d2017-10-04 14:31:33 -0400154
Cary Clark7fc1d122017-10-09 14:07:42 -0400155#Param size SkScalar values for Rect width and height ##
156
157#Return bounds (0, 0, size.width(), size.height()) ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400158
159#Example
Cary Clark154beea2017-10-26 07:58:48 -0400160 SkSize size = {25.5f, 35.5f};
161 SkRect rect = SkRect::MakeSize(size);
162 SkDebugf("rect width: %g height: %g\n", rect.width(), rect.height());
163 SkISize floor = size.toFloor();
164 rect = SkRect::MakeSize(SkSize::Make(floor));
165 SkDebugf("floor width: %g height: %g\n", rect.width(), rect.height());
Cary Clark7fc1d122017-10-09 14:07:42 -0400166#StdOut
Cary Clark154beea2017-10-26 07:58:48 -0400167rect width: 25.5 height: 35.5
Cary Clark7fc1d122017-10-09 14:07:42 -0400168floor width: 25 height: 35
169##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400170##
171
Cary Clark7fc1d122017-10-09 14:07:42 -0400172#SeeAlso MakeWH MakeXYWH MakeIWH setWH SkIRect::MakeWH
Cary Clarkbc5697d2017-10-04 14:31:33 -0400173
174##
175
176# ------------------------------------------------------------------------------
177
Cary Clark61313f32018-10-08 14:57:48 -0400178#Method static constexpr SkRect MakeLTRB(SkScalar l, SkScalar t, SkScalar r,
Cary Clarkbc5697d2017-10-04 14:31:33 -0400179 SkScalar b)
Cary Clark61313f32018-10-08 14:57:48 -0400180#In Constructors
Cary Clarkab2621d2018-01-30 10:08:57 -0500181#Line # constructs from SkScalar left, top, right, bottom ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400182
Cary Clark7fc1d122017-10-09 14:07:42 -0400183Returns constructed Rect set to (l, t, r, b). Does not sort input; Rect may
184result in fLeft greater than fRight, or fTop greater than fBottom.
Cary Clarkbc5697d2017-10-04 14:31:33 -0400185
Cary Clark7fc1d122017-10-09 14:07:42 -0400186#Param l SkScalar stored in fLeft ##
187#Param t SkScalar stored in fTop ##
188#Param r SkScalar stored in fRight ##
189#Param b SkScalar stored in fBottom ##
190
191#Return bounds (l, t, r, b) ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400192
193#Example
Cary Clark154beea2017-10-26 07:58:48 -0400194 SkRect rect = SkRect::MakeLTRB(5, 35, 15, 25);
195 SkDebugf("rect: %g, %g, %g, %g isEmpty: %s\n", rect.left(), rect.top(), rect.right(),
196 rect.bottom(), rect.isEmpty() ? "true" : "false");
197 rect.sort();
198 SkDebugf("rect: %g, %g, %g, %g isEmpty: %s\n", rect.left(), rect.top(), rect.right(),
199 rect.bottom(), rect.isEmpty() ? "true" : "false");
Cary Clark7fc1d122017-10-09 14:07:42 -0400200#StdOut
Cary Clark154beea2017-10-26 07:58:48 -0400201rect: 5, 35, 15, 25 isEmpty: true
Cary Clark7fc1d122017-10-09 14:07:42 -0400202rect: 5, 25, 15, 35 isEmpty: false
203##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400204##
205
Cary Clark7fc1d122017-10-09 14:07:42 -0400206#SeeAlso MakeXYWH SkIRect::MakeLTRB
Cary Clarkbc5697d2017-10-04 14:31:33 -0400207
208##
209
210# ------------------------------------------------------------------------------
211
Cary Clark61313f32018-10-08 14:57:48 -0400212#Method static constexpr SkRect MakeXYWH(SkScalar x, SkScalar y, SkScalar w, SkScalar h)
Cary Clarkbc5697d2017-10-04 14:31:33 -0400213
Cary Clark61313f32018-10-08 14:57:48 -0400214#In Constructors
Cary Clarkab2621d2018-01-30 10:08:57 -0500215#Line # constructs from SkScalar input returning (x, y, width, height) ##
Cary Clark2be81cf2018-09-13 12:04:30 -0400216Returns constructed Rect set to #Formula # (x, y, x + w, y + h) ##.
217Does not validate input; w or h may be negative.
Cary Clarkbc5697d2017-10-04 14:31:33 -0400218
Cary Clark7fc1d122017-10-09 14:07:42 -0400219#Param x stored in fLeft ##
220#Param y stored in fTop ##
221#Param w added to x and stored in fRight ##
222#Param h added to y and stored in fBottom ##
223
Cary Clark884dd7d2017-10-11 10:37:52 -0400224#Return bounds at (x, y) with width w and height h ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400225
226#Example
Cary Clark154beea2017-10-26 07:58:48 -0400227 SkRect rect = SkRect::MakeXYWH(5, 35, -15, 25);
228 SkDebugf("rect: %g, %g, %g, %g isEmpty: %s\n", rect.left(), rect.top(), rect.right(),
229 rect.bottom(), rect.isEmpty() ? "true" : "false");
230 rect.sort();
231 SkDebugf("rect: %g, %g, %g, %g isEmpty: %s\n", rect.left(), rect.top(), rect.right(),
232 rect.bottom(), rect.isEmpty() ? "true" : "false");
Cary Clark7fc1d122017-10-09 14:07:42 -0400233#StdOut
Cary Clark154beea2017-10-26 07:58:48 -0400234rect: 5, 35, -10, 60 isEmpty: true
Cary Clark7fc1d122017-10-09 14:07:42 -0400235rect: -10, 35, 5, 60 isEmpty: false
236##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400237##
238
Cary Clark7fc1d122017-10-09 14:07:42 -0400239#SeeAlso MakeLTRB SkIRect::MakeXYWH
Cary Clarkbc5697d2017-10-04 14:31:33 -0400240
241##
242
243# ------------------------------------------------------------------------------
244
Cary Clarkbc5697d2017-10-04 14:31:33 -0400245#Method static SkRect Make(const SkISize& size)
246
Cary Clark61313f32018-10-08 14:57:48 -0400247#In Constructors
Cary Clarkab2621d2018-01-30 10:08:57 -0500248#Line # constructs from ISize returning (0, 0, width, height) ##
Cary Clark682c58d2018-05-16 07:07:07 -0400249Returns constructed IRect set to (0, 0, size.width(), size.height()).
Cary Clark7fc1d122017-10-09 14:07:42 -0400250Does not validate input; size.width() or size.height() may be negative.
Cary Clarkbc5697d2017-10-04 14:31:33 -0400251
Cary Clark7fc1d122017-10-09 14:07:42 -0400252#Param size integer values for Rect width and height ##
253
254#Return bounds (0, 0, size.width(), size.height()) ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400255
256#Example
Cary Clark154beea2017-10-26 07:58:48 -0400257 SkRect rect1 = SkRect::MakeSize({2, 35});
258 SkRect rect2 = SkRect::MakeIWH(2, 35);
259 SkDebugf("rect1 %c= rect2\n", rect1 == rect2 ? '=' : '!');
Cary Clark7fc1d122017-10-09 14:07:42 -0400260#StdOut
261rect1 == rect2
262##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400263##
264
Cary Clark7fc1d122017-10-09 14:07:42 -0400265#SeeAlso MakeWH MakeXYWH SkRect::MakeIWH SkIRect::MakeSize
Cary Clarkbc5697d2017-10-04 14:31:33 -0400266
267##
268
269# ------------------------------------------------------------------------------
270
Cary Clark61313f32018-10-08 14:57:48 -0400271#Method static SkRect Make(const SkIRect& irect)
Cary Clarkbc5697d2017-10-04 14:31:33 -0400272
Cary Clark61313f32018-10-08 14:57:48 -0400273#In Constructors
Cary Clark7fc1d122017-10-09 14:07:42 -0400274Returns constructed IRect set to irect, promoting integers to Scalar.
275Does not validate input; fLeft may be greater than fRight, fTop may be greater
276than fBottom.
Cary Clarkbc5697d2017-10-04 14:31:33 -0400277
Cary Clark7fc1d122017-10-09 14:07:42 -0400278#Param irect integer unsorted bounds ##
279
280#Return irect members converted to SkScalar ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400281
282#Example
Cary Clark154beea2017-10-26 07:58:48 -0400283 SkIRect i_rect1 = {2, 35, 22, 53};
284 SkRect f_rect = SkRect::Make(i_rect1);
285 f_rect.offset(0.49f, 0.49f);
286 SkIRect i_rect2;
287 f_rect.round(&i_rect2);
288 SkDebugf("i_rect1 %c= i_rect2\n", i_rect1 == i_rect2? '=' : '!');
Cary Clarkbc5697d2017-10-04 14:31:33 -0400289##
290
Cary Clark7fc1d122017-10-09 14:07:42 -0400291#SeeAlso MakeLTRB
Cary Clarkbc5697d2017-10-04 14:31:33 -0400292
293##
294
Cary Clark4855f782018-02-06 09:41:53 -0500295#Subtopic Property
296#Line # member values, center, validity ##
Cary Clark2dc84ad2018-01-26 12:56:22 -0500297
Cary Clarkbc5697d2017-10-04 14:31:33 -0400298# ------------------------------------------------------------------------------
299
300#Method bool isEmpty() const
301
Cary Clark4855f782018-02-06 09:41:53 -0500302#In Property
Cary Clarkab2621d2018-01-30 10:08:57 -0500303#Line # returns true if width or height are zero or negative ##
Cary Clark7fc1d122017-10-09 14:07:42 -0400304Returns true if fLeft is equal to or greater than fRight, or if fTop is equal
305to or greater than fBottom. Call sort() to reverse rectangles with negative
306width() or height().
Cary Clarkbc5697d2017-10-04 14:31:33 -0400307
Cary Clark61313f32018-10-08 14:57:48 -0400308#Return true if width() or height() are not positive and valid ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400309
310#Example
Cary Clark154beea2017-10-26 07:58:48 -0400311 SkRect tests[] = {{20, 40, 10, 50}, {20, 40, 20, 50}};
312 for (auto rect : tests) {
313 SkDebugf("rect: {%g, %g, %g, %g} is" "%s empty\n", rect.left(), rect.top(), rect.right(),
314 rect.bottom(), rect.isEmpty() ? "" : " not");
315 rect.sort();
316 SkDebugf("sorted: {%g, %g, %g, %g} is" "%s empty\n", rect.left(), rect.top(), rect.right(),
317 rect.bottom(), rect.isEmpty() ? "" : " not");
318 }
319#StdOut
320rect: {20, 40, 10, 50} is empty
321sorted: {10, 40, 20, 50} is not empty
322rect: {20, 40, 20, 50} is empty
323sorted: {20, 40, 20, 50} is empty
324##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400325##
326
Cary Clark7fc1d122017-10-09 14:07:42 -0400327#SeeAlso MakeEmpty sort SkIRect::isEmpty
Cary Clarkbc5697d2017-10-04 14:31:33 -0400328
329##
330
331# ------------------------------------------------------------------------------
332
333#Method bool isSorted() const
334
Cary Clark4855f782018-02-06 09:41:53 -0500335#In Property
Cary Clarkab2621d2018-01-30 10:08:57 -0500336#Line # returns true if width or height are zero or positive ##
Cary Clark7fc1d122017-10-09 14:07:42 -0400337Returns true if fLeft is equal to or less than fRight, or if fTop is equal
338to or less than fBottom. Call sort() to reverse rectangles with negative
339width() or height().
Cary Clarkbc5697d2017-10-04 14:31:33 -0400340
Cary Clark7fc1d122017-10-09 14:07:42 -0400341#Return true if width() or height() are zero or positive ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400342
343#Example
Cary Clark154beea2017-10-26 07:58:48 -0400344 SkRect tests[] = {{20, 40, 10, 50}, {20, 40, 20, 50}};
345 for (auto rect : tests) {
346 SkDebugf("rect: {%g, %g, %g, %g} is" "%s sorted\n", rect.left(), rect.top(), rect.right(),
347 rect.bottom(), rect.isSorted() ? "" : " not");
348 rect.sort();
349 SkDebugf("sorted: {%g, %g, %g, %g} is" "%s sorted\n", rect.left(), rect.top(), rect.right(),
350 rect.bottom(), rect.isSorted() ? "" : " not");
351 }
352#StdOut
353rect: {20, 40, 10, 50} is not sorted
354sorted: {10, 40, 20, 50} is sorted
355rect: {20, 40, 20, 50} is sorted
356sorted: {20, 40, 20, 50} is sorted
357##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400358##
359
Cary Clark7fc1d122017-10-09 14:07:42 -0400360#SeeAlso sort makeSorted isEmpty
Cary Clarkbc5697d2017-10-04 14:31:33 -0400361
362##
363
364# ------------------------------------------------------------------------------
365
Cary Clarkbc5697d2017-10-04 14:31:33 -0400366#Method bool isFinite() const
367
Cary Clark4855f782018-02-06 09:41:53 -0500368#In Property
Cary Clarkab2621d2018-01-30 10:08:57 -0500369#Line # returns true if no member is infinite or NaN ##
Cary Clark7fc1d122017-10-09 14:07:42 -0400370Returns true if all values in the rectangle are finite: SK_ScalarMin or larger,
Cary Clark682c58d2018-05-16 07:07:07 -0400371and SK_ScalarMax or smaller.
Cary Clarkbc5697d2017-10-04 14:31:33 -0400372
Cary Clark7fc1d122017-10-09 14:07:42 -0400373#Return true if no member is infinite or NaN ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400374
375#Example
Mike Reed274218e2018-01-08 15:05:02 -0500376SkRect largest = { SK_ScalarMin, SK_ScalarMin, SK_ScalarMax, SK_ScalarMax };
Cary Clark154beea2017-10-26 07:58:48 -0400377 SkDebugf("largest is finite: %s\n", largest.isFinite() ? "true" : "false");
378 SkDebugf("large width %g\n", largest.width());
379 SkRect widest = SkRect::MakeWH(largest.width(), largest.height());
380 SkDebugf("widest is finite: %s\n", widest.isFinite() ? "true" : "false");
381#StdOut
382largest is finite: true
383large width inf
Cary Clark7fc1d122017-10-09 14:07:42 -0400384widest is finite: false
385##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400386##
387
Cary Clark7fc1d122017-10-09 14:07:42 -0400388#SeeAlso SkScalarIsFinite SkScalarIsNaN
Cary Clarkbc5697d2017-10-04 14:31:33 -0400389
390##
391
392# ------------------------------------------------------------------------------
393
394#Method SkScalar x() const
395
Cary Clark4855f782018-02-06 09:41:53 -0500396#In Property
Cary Clarkab2621d2018-01-30 10:08:57 -0500397#Line # returns bounds left ##
Cary Clark7fc1d122017-10-09 14:07:42 -0400398Returns left edge of Rect, if sorted. Call isSorted to see if Rect is valid.
399Call sort() to reverse fLeft and fRight if needed.
400
401#Return fLeft ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400402
403#Example
Cary Clark154beea2017-10-26 07:58:48 -0400404 SkRect unsorted = { 15, 5, 10, 25 };
405 SkDebugf("unsorted.fLeft: %g unsorted.x(): %g\n", unsorted.fLeft, unsorted.x());
406 SkRect sorted = unsorted.makeSorted();
407 SkDebugf("sorted.fLeft: %g sorted.x(): %g\n", sorted.fLeft, sorted.x());
Cary Clark7fc1d122017-10-09 14:07:42 -0400408#StdOut
Cary Clark154beea2017-10-26 07:58:48 -0400409unsorted.fLeft: 15 unsorted.x(): 15
Cary Clark7fc1d122017-10-09 14:07:42 -0400410sorted.fLeft: 10 sorted.x(): 10
411##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400412##
413
Cary Clark7fc1d122017-10-09 14:07:42 -0400414#SeeAlso fLeft left() y() SkIRect::x()
Cary Clarkbc5697d2017-10-04 14:31:33 -0400415
416##
417
418# ------------------------------------------------------------------------------
419
420#Method SkScalar y() const
421
Cary Clark4855f782018-02-06 09:41:53 -0500422#In Property
Cary Clarkab2621d2018-01-30 10:08:57 -0500423#Line # returns bounds top ##
Cary Clark7fc1d122017-10-09 14:07:42 -0400424Returns top edge of Rect, if sorted. Call isEmpty to see if Rect may be invalid,
425and sort() to reverse fTop and fBottom if needed.
426
427#Return fTop ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400428
429#Example
Cary Clark154beea2017-10-26 07:58:48 -0400430 SkRect unsorted = { 15, 25, 10, 5 };
431 SkDebugf("unsorted.fTop: %g unsorted.y(): %g\n", unsorted.fTop, unsorted.y());
432 SkRect sorted = unsorted.makeSorted();
Cary Clark7fc1d122017-10-09 14:07:42 -0400433 SkDebugf("sorted.fTop: %g sorted.y(): %g\n", sorted.fTop, sorted.y());
434#StdOut
Cary Clark154beea2017-10-26 07:58:48 -0400435unsorted.fTop: 25 unsorted.y(): 25
Cary Clark7fc1d122017-10-09 14:07:42 -0400436sorted.fTop: 5 sorted.y(): 5
437##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400438##
439
Cary Clark7fc1d122017-10-09 14:07:42 -0400440#SeeAlso fTop top() x() SkIRect::y()
Cary Clarkbc5697d2017-10-04 14:31:33 -0400441
442##
443
444# ------------------------------------------------------------------------------
445
446#Method SkScalar left() const
447
Cary Clark4855f782018-02-06 09:41:53 -0500448#In Property
Cary Clarkab2621d2018-01-30 10:08:57 -0500449#Line # returns smaller bounds in x, if sorted ##
Cary Clark7fc1d122017-10-09 14:07:42 -0400450Returns left edge of Rect, if sorted. Call isSorted to see if Rect is valid.
451Call sort() to reverse fLeft and fRight if needed.
452
453#Return fLeft ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400454
455#Example
Cary Clark154beea2017-10-26 07:58:48 -0400456 SkRect unsorted = { 15, 5, 10, 25 };
457 SkDebugf("unsorted.fLeft: %g unsorted.left(): %g\n", unsorted.fLeft, unsorted.left());
458 SkRect sorted = unsorted.makeSorted();
459 SkDebugf("sorted.fLeft: %g sorted.left(): %g\n", sorted.fLeft, sorted.left());
Cary Clark7fc1d122017-10-09 14:07:42 -0400460#StdOut
Cary Clark154beea2017-10-26 07:58:48 -0400461unsorted.fLeft: 15 unsorted.left(): 15
Cary Clark7fc1d122017-10-09 14:07:42 -0400462sorted.fLeft: 10 sorted.left(): 10
463##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400464##
465
Cary Clark7fc1d122017-10-09 14:07:42 -0400466#SeeAlso fLeft x() SkIRect::left()
Cary Clarkbc5697d2017-10-04 14:31:33 -0400467
468##
469
470# ------------------------------------------------------------------------------
471
472#Method SkScalar top() const
473
Cary Clark4855f782018-02-06 09:41:53 -0500474#In Property
Cary Clarkab2621d2018-01-30 10:08:57 -0500475#Line # returns smaller bounds in y, if sorted ##
Cary Clark7fc1d122017-10-09 14:07:42 -0400476Returns top edge of Rect, if sorted. Call isEmpty to see if Rect may be invalid,
477and sort() to reverse fTop and fBottom if needed.
478
479#Return fTop ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400480
481#Example
Cary Clark154beea2017-10-26 07:58:48 -0400482 SkRect unsorted = { 15, 25, 10, 5 };
483 SkDebugf("unsorted.fTop: %g unsorted.top(): %g\n", unsorted.fTop, unsorted.top());
484 SkRect sorted = unsorted.makeSorted();
Cary Clark7fc1d122017-10-09 14:07:42 -0400485 SkDebugf("sorted.fTop: %g sorted.top(): %g\n", sorted.fTop, sorted.top());
486#StdOut
Cary Clark154beea2017-10-26 07:58:48 -0400487unsorted.fTop: 25 unsorted.top(): 25
Cary Clark7fc1d122017-10-09 14:07:42 -0400488sorted.fTop: 5 sorted.top(): 5
489##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400490##
491
Cary Clark7fc1d122017-10-09 14:07:42 -0400492#SeeAlso fTop y() SkIRect::top()
Cary Clarkbc5697d2017-10-04 14:31:33 -0400493
494##
495
496# ------------------------------------------------------------------------------
497
498#Method SkScalar right() const
499
Cary Clark4855f782018-02-06 09:41:53 -0500500#In Property
Cary Clarkab2621d2018-01-30 10:08:57 -0500501#Line # returns larger bounds in x, if sorted ##
Cary Clark7fc1d122017-10-09 14:07:42 -0400502Returns right edge of Rect, if sorted. Call isSorted to see if Rect is valid.
503Call sort() to reverse fLeft and fRight if needed.
504
505#Return fRight ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400506
507#Example
Cary Clark154beea2017-10-26 07:58:48 -0400508 SkRect unsorted = { 15, 25, 10, 5 };
509 SkDebugf("unsorted.fRight: %g unsorted.right(): %g\n", unsorted.fRight, unsorted.right());
510 SkRect sorted = unsorted.makeSorted();
511 SkDebugf("sorted.fRight: %g sorted.right(): %g\n", sorted.fRight, sorted.right());
Cary Clark7fc1d122017-10-09 14:07:42 -0400512#StdOut
Cary Clark154beea2017-10-26 07:58:48 -0400513unsorted.fRight: 10 unsorted.right(): 10
Cary Clark7fc1d122017-10-09 14:07:42 -0400514sorted.fRight: 15 sorted.right(): 15
515##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400516##
517
Cary Clark7fc1d122017-10-09 14:07:42 -0400518#SeeAlso fRight SkIRect::right()
Cary Clarkbc5697d2017-10-04 14:31:33 -0400519
520##
521
522# ------------------------------------------------------------------------------
523
524#Method SkScalar bottom() const
525
Cary Clark4855f782018-02-06 09:41:53 -0500526#In Property
Cary Clarkab2621d2018-01-30 10:08:57 -0500527#Line # returns larger bounds in y, if sorted ##
Cary Clark7fc1d122017-10-09 14:07:42 -0400528Returns bottom edge of Rect, if sorted. Call isEmpty to see if Rect may be invalid,
529and sort() to reverse fTop and fBottom if needed.
530
531#Return fBottom ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400532
533#Example
Cary Clark154beea2017-10-26 07:58:48 -0400534 SkRect unsorted = { 15, 25, 10, 5 };
535 SkDebugf("unsorted.fBottom: %g unsorted.bottom(): %g\n", unsorted.fBottom, unsorted.bottom());
536 SkRect sorted = unsorted.makeSorted();
537 SkDebugf("sorted.fBottom: %g sorted.bottom(): %g\n", sorted.fBottom, sorted.bottom());
Cary Clark7fc1d122017-10-09 14:07:42 -0400538#StdOut
Cary Clark154beea2017-10-26 07:58:48 -0400539unsorted.fBottom: 5 unsorted.bottom(): 5
Cary Clark7fc1d122017-10-09 14:07:42 -0400540sorted.fBottom: 25 sorted.bottom(): 25
541##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400542##
543
Cary Clark7fc1d122017-10-09 14:07:42 -0400544#SeeAlso fBottom SkIRect::bottom()
Cary Clarkbc5697d2017-10-04 14:31:33 -0400545
546##
547
548# ------------------------------------------------------------------------------
549
550#Method SkScalar width() const
551
Cary Clark4855f782018-02-06 09:41:53 -0500552#In Property
Cary Clarkab2621d2018-01-30 10:08:57 -0500553#Line # returns span in x ##
Cary Clark7fc1d122017-10-09 14:07:42 -0400554Returns span on the x-axis. This does not check if Rect is sorted, or if
555result fits in 32-bit float; result may be negative or infinity.
556
557#Return fRight minus fLeft ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400558
559#Example
Cary Clark7fc1d122017-10-09 14:07:42 -0400560#Description
561Compare with SkIRect::width() example.
562##
Cary Clark154beea2017-10-26 07:58:48 -0400563 SkRect unsorted = { 15, 25, 10, 5 };
564 SkDebugf("unsorted width: %g\n", unsorted.width());
565 SkRect large = { -2147483647.f, 1, 2147483644.f, 2 };
566 SkDebugf("large width: %.0f\n", large.width());
Cary Clark7fc1d122017-10-09 14:07:42 -0400567#StdOut
Cary Clark154beea2017-10-26 07:58:48 -0400568unsorted width: -5
Cary Clark7fc1d122017-10-09 14:07:42 -0400569large width: 4294967296
570##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400571##
572
Cary Clark7fc1d122017-10-09 14:07:42 -0400573#SeeAlso height() SkIRect::width()
Cary Clarkbc5697d2017-10-04 14:31:33 -0400574
575##
576
577# ------------------------------------------------------------------------------
578
579#Method SkScalar height() const
580
Cary Clark4855f782018-02-06 09:41:53 -0500581#In Property
Cary Clarkab2621d2018-01-30 10:08:57 -0500582#Line # returns span in y ##
Cary Clark224c7002018-06-27 11:00:21 -0400583Returns span on the y-axis. This does not check if Rect is sorted, or if
Cary Clark7fc1d122017-10-09 14:07:42 -0400584result fits in 32-bit float; result may be negative or infinity.
585
586#Return fBottom minus fTop ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400587
588#Example
Cary Clark7fc1d122017-10-09 14:07:42 -0400589#Description
590Compare with SkIRect::height() example.
591##
Cary Clark154beea2017-10-26 07:58:48 -0400592 SkRect unsorted = { 15, 25, 10, 20 };
593 SkDebugf("unsorted height: %g\n", unsorted.height());
594 SkRect large = { 1, -2147483647.f, 2, 2147483644.f };
595 SkDebugf("large height: %.0f\n", large.height());
Cary Clark7fc1d122017-10-09 14:07:42 -0400596#StdOut
Cary Clark154beea2017-10-26 07:58:48 -0400597unsorted height: -5
Cary Clark7fc1d122017-10-09 14:07:42 -0400598large height: 4294967296
599##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400600##
601
Cary Clark7fc1d122017-10-09 14:07:42 -0400602#SeeAlso width() SkIRect::height()
Cary Clarkbc5697d2017-10-04 14:31:33 -0400603
604##
605
606# ------------------------------------------------------------------------------
607
608#Method SkScalar centerX() const
609
Cary Clark4855f782018-02-06 09:41:53 -0500610#In Property
Cary Clarkab2621d2018-01-30 10:08:57 -0500611#Line # returns midpoint in x ##
Cary Clark7fc1d122017-10-09 14:07:42 -0400612Returns average of left edge and right edge. Result does not change if Rect
613is sorted. Result may overflow to infinity if Rect is far from the origin.
614
615#Return midpoint in x ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400616
617#Example
Cary Clark154beea2017-10-26 07:58:48 -0400618 SkRect tests[] = {{20, 30, 41, 51}, {-20, -30, -41, -51}};
619 for (auto rect : tests) {
620 SkDebugf("left: %3g right: %3g centerX: %3g\n", rect.left(), rect.right(), rect.centerX());
621 rect.sort();
622 SkDebugf("left: %3g right: %3g centerX: %3g\n", rect.left(), rect.right(), rect.centerX());
623 }
Cary Clark7fc1d122017-10-09 14:07:42 -0400624#StdOut
Cary Clark154beea2017-10-26 07:58:48 -0400625left: 20 right: 41 centerX: 30.5
626left: 20 right: 41 centerX: 30.5
627left: -20 right: -41 centerX: -30.5
Cary Clark7fc1d122017-10-09 14:07:42 -0400628left: -41 right: -20 centerX: -30.5
629##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400630##
631
Cary Clark47d7dae2018-04-11 16:54:35 -0400632#SeeAlso centerY
Cary Clarkbc5697d2017-10-04 14:31:33 -0400633
634##
635
636# ------------------------------------------------------------------------------
637
638#Method SkScalar centerY() const
639
Cary Clark4855f782018-02-06 09:41:53 -0500640#In Property
Cary Clarkab2621d2018-01-30 10:08:57 -0500641#Line # returns midpoint in y ##
Cary Clark7fc1d122017-10-09 14:07:42 -0400642Returns average of top edge and bottom edge. Result does not change if Rect
Cary Clark75fd4492018-06-20 12:45:16 -0400643is sorted.
Cary Clark7fc1d122017-10-09 14:07:42 -0400644
645#Return midpoint in y ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400646
647#Example
Cary Clark154beea2017-10-26 07:58:48 -0400648 SkRect rect = { 2e+38, 2e+38, 3e+38, 3e+38 };
649 SkDebugf("left: %g right: %g centerX: %g ", rect.left(), rect.right(), rect.centerX());
650 SkDebugf("safe mid x: %g\n", rect.left() / 2 + rect.right() / 2);
Cary Clark7fc1d122017-10-09 14:07:42 -0400651#StdOut
Cary Clark75fd4492018-06-20 12:45:16 -0400652left: 2e+38 right: 3e+38 centerX: 2.5e+38 safe mid x: 2.5e+38
Cary Clark7fc1d122017-10-09 14:07:42 -0400653##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400654##
655
Cary Clark47d7dae2018-04-11 16:54:35 -0400656#SeeAlso centerX
Cary Clarkbc5697d2017-10-04 14:31:33 -0400657
658##
659
Cary Clark4855f782018-02-06 09:41:53 -0500660#Subtopic Property ##
Cary Clark2dc84ad2018-01-26 12:56:22 -0500661
Cary Clark61313f32018-10-08 14:57:48 -0400662#Subtopic Operators
Cary Clark2dc84ad2018-01-26 12:56:22 -0500663
Cary Clarkbc5697d2017-10-04 14:31:33 -0400664# ------------------------------------------------------------------------------
665
Cary Clark884dd7d2017-10-11 10:37:52 -0400666#Method bool operator==(const SkRect& a, const SkRect& b)
Cary Clarkbc5697d2017-10-04 14:31:33 -0400667
Cary Clark61313f32018-10-08 14:57:48 -0400668#In Operators
Cary Clarkab2621d2018-01-30 10:08:57 -0500669#Line # returns true if members are equal ##
Cary Clark682c58d2018-05-16 07:07:07 -0400670Returns true if all members in a: fLeft, fTop, fRight, and fBottom; are
Cary Clark7fc1d122017-10-09 14:07:42 -0400671equal to the corresponding members in b.
Cary Clarkbc5697d2017-10-04 14:31:33 -0400672
Cary Clark7fc1d122017-10-09 14:07:42 -0400673a and b are not equal if either contain NaN. a and b are equal if members
674contain zeroes width different signs.
675
676#Param a Rect to compare ##
677#Param b Rect to compare ##
678
679#Return true if members are equal ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400680
681#Example
Cary Clark154beea2017-10-26 07:58:48 -0400682 auto debugster = [](const SkRect& test) -> void {
683 SkRect negZero = {-0.0f, -0.0f, 2, 2};
684 SkDebugf("{%g, %g, %g, %g} %c= {%g, %g, %g, %g} %s numerically equal\n",
685 test.fLeft, test.fTop, test.fRight, test.fBottom,
686 negZero.fLeft, negZero.fTop, negZero.fRight, negZero.fBottom,
687 test == negZero ? '=' : '!',
688 test.fLeft == negZero.fLeft && test.fTop == negZero.fTop &&
689 test.fRight == negZero.fRight && test.fBottom == negZero.fBottom ?
690 "and are" : "yet are not");
691 };
692 SkRect tests[] = {{0, 0, 2, 2}, {-0, -0, 2, 2}, {0.0f, 0.0f, 2, 2}};
693 SkDebugf("tests are %s" "equal\n", tests[0] == tests[1] && tests[1] == tests[2] ? "" : "not ");
694 for (auto rect : tests) {
695 debugster(rect);
Cary Clark7fc1d122017-10-09 14:07:42 -0400696 }
Cary Clark154beea2017-10-26 07:58:48 -0400697#StdOut
698tests are equal
699{0, 0, 2, 2} == {-0, -0, 2, 2} and are numerically equal
700{0, 0, 2, 2} == {-0, -0, 2, 2} and are numerically equal
Cary Clark682c58d2018-05-16 07:07:07 -0400701{0, 0, 2, 2} == {-0, -0, 2, 2} and are numerically equal
Cary Clark7fc1d122017-10-09 14:07:42 -0400702##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400703##
704
Cary Clark7fc1d122017-10-09 14:07:42 -0400705#SeeAlso operator!=(const SkRect& a, const SkRect& b)
Cary Clarkbc5697d2017-10-04 14:31:33 -0400706
707##
708
709# ------------------------------------------------------------------------------
710
Cary Clark884dd7d2017-10-11 10:37:52 -0400711#Method bool operator!=(const SkRect& a, const SkRect& b)
Cary Clarkbc5697d2017-10-04 14:31:33 -0400712
Cary Clark61313f32018-10-08 14:57:48 -0400713#In Operators
Cary Clarkab2621d2018-01-30 10:08:57 -0500714#Line # returns true if members are unequal ##
Cary Clark682c58d2018-05-16 07:07:07 -0400715Returns true if any in a: fLeft, fTop, fRight, and fBottom; does not
Cary Clark7fc1d122017-10-09 14:07:42 -0400716equal the corresponding members in b.
Cary Clarkbc5697d2017-10-04 14:31:33 -0400717
Cary Clark7fc1d122017-10-09 14:07:42 -0400718a and b are not equal if either contain NaN. a and b are equal if members
719contain zeroes width different signs.
720
721#Param a Rect to compare ##
722#Param b Rect to compare ##
723
724#Return true if members are not equal ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400725
726#Example
Cary Clark154beea2017-10-26 07:58:48 -0400727 SkRect test = {0, 0, 2, SK_ScalarNaN};
728 SkDebugf("test with NaN is %s" "equal to itself\n", test == test ? "" : "not ");
729#StdOut
Cary Clark682c58d2018-05-16 07:07:07 -0400730test with NaN is not equal to itself
Cary Clark7fc1d122017-10-09 14:07:42 -0400731##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400732##
733
Cary Clark7fc1d122017-10-09 14:07:42 -0400734#SeeAlso operator==(const SkRect& a, const SkRect& b)
Cary Clarkbc5697d2017-10-04 14:31:33 -0400735
736##
737
Cary Clark61313f32018-10-08 14:57:48 -0400738#Subtopic Operators ##
Cary Clark2dc84ad2018-01-26 12:56:22 -0500739
740#Subtopic As_Points
Cary Clark08895c42018-02-01 09:37:32 -0500741#Line # conversion to and from Points ##
Cary Clark2dc84ad2018-01-26 12:56:22 -0500742
Cary Clarkbc5697d2017-10-04 14:31:33 -0400743# ------------------------------------------------------------------------------
744
745#Method void toQuad(SkPoint quad[4]) const
746
Cary Clarkab2621d2018-01-30 10:08:57 -0500747#In As_Points
748#Line # returns four corners as Point ##
Cary Clark7fc1d122017-10-09 14:07:42 -0400749Returns four points in quad that enclose Rect ordered as: top-left, top-right,
Cary Clark682c58d2018-05-16 07:07:07 -0400750bottom-right, bottom-left.
Cary Clark7fc1d122017-10-09 14:07:42 -0400751
752#Private
Cary Clark682c58d2018-05-16 07:07:07 -0400753Consider adding param to control whether quad is clockwise or counterclockwise.
Cary Clarkbc5697d2017-10-04 14:31:33 -0400754##
755
Cary Clark7fc1d122017-10-09 14:07:42 -0400756#Param quad storage for corners of Rect ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400757
758#Example
Cary Clark154beea2017-10-26 07:58:48 -0400759 SkRect rect = {1, 2, 3, 4};
760 SkPoint corners[4];
761 rect.toQuad(corners);
762 SkDebugf("rect: {%g, %g, %g, %g}\n", rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
763 SkDebugf("corners:");
764 for (auto corner : corners) {
765 SkDebugf(" {%g, %g}", corner.fX, corner.fY);
766 }
767 SkDebugf("\n");
768#StdOut
769rect: {1, 2, 3, 4}
Cary Clark682c58d2018-05-16 07:07:07 -0400770corners: {1, 2} {3, 2} {3, 4} {1, 4}
Cary Clark7fc1d122017-10-09 14:07:42 -0400771##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400772##
773
Cary Clark7fc1d122017-10-09 14:07:42 -0400774#SeeAlso SkPath::addRect
Cary Clarkbc5697d2017-10-04 14:31:33 -0400775
776##
777
778# ------------------------------------------------------------------------------
779
Cary Clark2dc84ad2018-01-26 12:56:22 -0500780#Method void setBounds(const SkPoint pts[], int count)
781
Cary Clarkab2621d2018-01-30 10:08:57 -0500782#In As_Points
783#Line # sets to upper and lower limits of Point array ##
Cary Clark2dc84ad2018-01-26 12:56:22 -0500784Sets to bounds of Point array with count entries. If count is zero or smaller,
785or if Point array contains an infinity or NaN, sets to (0, 0, 0, 0).
786
787Result is either empty or sorted: fLeft is less than or equal to fRight, and
788fTop is less than or equal to fBottom.
789
790#Param pts Point array ##
791#Param count entries in array ##
792
793#Example
794 SkPoint points[] = {{3, 4}, {1, 2}, {5, 6}, {SK_ScalarNaN, 8}};
795 for (int count = 0; count <= (int) SK_ARRAY_COUNT(points); ++count) {
796 SkRect rect;
797 rect.setBounds(points, count);
798 if (count > 0) {
799 SkDebugf("added: %3g, %g ", points[count - 1].fX, points[count - 1].fY);
800 } else {
801 SkDebugf("%14s", " ");
802 }
803 SkDebugf("count: %d rect: %g, %g, %g, %g\n", count,
804 rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
805 }
806#StdOut
807 count: 0 rect: 0, 0, 0, 0
808added: 3, 4 count: 1 rect: 3, 4, 3, 4
809added: 1, 2 count: 2 rect: 1, 2, 3, 4
810added: 5, 6 count: 3 rect: 1, 2, 5, 6
811added: nan, 8 count: 4 rect: 0, 0, 0, 0
812##
813##
814
815#SeeAlso set setBoundsCheck SkPath::addPoly
816
817##
818
819# ------------------------------------------------------------------------------
820
821#Method bool setBoundsCheck(const SkPoint pts[], int count)
822
Cary Clarkab2621d2018-01-30 10:08:57 -0500823#In As_Points
824#Line # sets to upper and lower limits of Point array ##
Cary Clark2dc84ad2018-01-26 12:56:22 -0500825Sets to bounds of Point array with count entries. Returns false if count is
826zero or smaller, or if Point array contains an infinity or NaN; in these cases
827sets Rect to (0, 0, 0, 0).
828
829Result is either empty or sorted: fLeft is less than or equal to fRight, and
830fTop is less than or equal to fBottom.
831
832#Param pts Point array ##
833#Param count entries in array ##
834
835#Return true if all Point values are finite ##
836
837#Example
838 SkPoint points[] = {{3, 4}, {1, 2}, {5, 6}, {SK_ScalarNaN, 8}};
839 for (int count = 0; count <= (int) SK_ARRAY_COUNT(points); ++count) {
840 SkRect rect;
841 bool success = rect.setBoundsCheck(points, count);
842 if (count > 0) {
843 SkDebugf("added: %3g, %g ", points[count - 1].fX, points[count - 1].fY);
844 } else {
845 SkDebugf("%14s", " ");
846 }
847 SkDebugf("count: %d rect: %g, %g, %g, %g success: %s\n", count,
848 rect.fLeft, rect.fTop, rect.fRight, rect.fBottom, success ? "true" : "false");
849 }
850#StdOut
851 count: 0 rect: 0, 0, 0, 0 success: true
852added: 3, 4 count: 1 rect: 3, 4, 3, 4 success: true
853added: 1, 2 count: 2 rect: 1, 2, 3, 4 success: true
854added: 5, 6 count: 3 rect: 1, 2, 5, 6 success: true
855added: nan, 8 count: 4 rect: 0, 0, 0, 0 success: false
856##
857##
858
859#SeeAlso set setBounds SkPath::addPoly
860
861##
862
863#Subtopic As_Points ##
864
865#Subtopic Set
Cary Clark08895c42018-02-01 09:37:32 -0500866#Line # replaces all values ##
Cary Clark2dc84ad2018-01-26 12:56:22 -0500867
868# ------------------------------------------------------------------------------
869
Cary Clarkc06754b2018-05-16 21:28:55 -0400870#Method void setBoundsNoCheck(const SkPoint pts[], int count)
871#In Set
872#Line # sets to upper and lower limits of Point array ##
Cary Clarkffb3d682018-05-17 12:17:28 -0400873Sets to bounds of Point pts array with count entries. If any Point in pts
Cary Clark8f288d92018-05-17 15:16:57 -0400874contains infinity or NaN, all Rect dimensions are set to NaN.
Cary Clarkc06754b2018-05-16 21:28:55 -0400875
876#Param pts Point array ##
877#Param count entries in array ##
878
879#Example
Cary Clark8f288d92018-05-17 15:16:57 -0400880 SkPoint points[] = {{3, 4}, {1, 2}, {SK_ScalarInfinity, 6}, {SK_ScalarNaN, 8}};
Cary Clarkffb3d682018-05-17 12:17:28 -0400881 for (int count = 0; count <= (int) SK_ARRAY_COUNT(points); ++count) {
882 SkRect rect;
883 rect.setBoundsNoCheck(points, count);
884 if (count > 0) {
885 SkDebugf("added: %3g, %g ", points[count - 1].fX, points[count - 1].fY);
886 } else {
887 SkDebugf("%14s", " ");
888 }
889 SkDebugf("count: %d rect: %g, %g, %g, %g\n", count,
890 rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
891 }
Cary Clarkc06754b2018-05-16 21:28:55 -0400892##
893
894#SeeAlso setBoundsCheck
895#Method ##
896
897# ------------------------------------------------------------------------------
898
Cary Clarkbc5697d2017-10-04 14:31:33 -0400899#Method void setEmpty()
900
Cary Clarkab2621d2018-01-30 10:08:57 -0500901#In Set
902#Line # sets to (0, 0, 0, 0) ##
Cary Clark7fc1d122017-10-09 14:07:42 -0400903Sets Rect to (0, 0, 0, 0).
904
905Many other rectangles are empty; if left is equal to or greater than right,
906or if top is equal to or greater than bottom. Setting all members to zero
907is a convenience, but does not designate a special empty rectangle.
Cary Clarkbc5697d2017-10-04 14:31:33 -0400908
909#Example
Cary Clark154beea2017-10-26 07:58:48 -0400910 SkRect rect = {3, 4, 1, 2};
911 for (int i = 0; i < 2; ++i) {
912 SkDebugf("rect: {%g, %g, %g, %g} is %s" "empty\n", rect.fLeft, rect.fTop,
913 rect.fRight, rect.fBottom, rect.isEmpty() ? "" : "not ");
914 rect.setEmpty();
915 }
916#StdOut
917rect: {3, 4, 1, 2} is empty
918rect: {0, 0, 0, 0} is empty
919##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400920##
921
Cary Clark7fc1d122017-10-09 14:07:42 -0400922#SeeAlso MakeEmpty SkIRect::setEmpty
Cary Clarkbc5697d2017-10-04 14:31:33 -0400923
924##
925
926# ------------------------------------------------------------------------------
927
928#Method void set(const SkIRect& src)
929
Cary Clarkab2621d2018-01-30 10:08:57 -0500930#In Set
931#Line # sets to SkScalar input (left, top, right, bottom) and others ##
Cary Clark7fc1d122017-10-09 14:07:42 -0400932Sets Rect to src, promoting src members from integer to Scalar.
Cary Clark682c58d2018-05-16 07:07:07 -0400933Very large values in src may lose precision.
Cary Clark7fc1d122017-10-09 14:07:42 -0400934
935#Param src integer Rect ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400936
937#Example
Cary Clark154beea2017-10-26 07:58:48 -0400938 SkIRect i_rect = {3, 4, 1, 2};
939 SkDebugf("i_rect: {%d, %d, %d, %d}\n", i_rect.fLeft, i_rect.fTop, i_rect.fRight, i_rect.fBottom);
940 SkRect f_rect;
941 f_rect.set(i_rect);
942 SkDebugf("f_rect: {%g, %g, %g, %g}\n", f_rect.fLeft, f_rect.fTop, f_rect.fRight, f_rect.fBottom);
943#StdOut
944i_rect: {3, 4, 1, 2}
945f_rect: {3, 4, 1, 2}
946##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400947##
948
Cary Clark7fc1d122017-10-09 14:07:42 -0400949#SeeAlso setLTRB SkIntToScalar
Cary Clarkbc5697d2017-10-04 14:31:33 -0400950
951##
952
953# ------------------------------------------------------------------------------
954
955#Method void set(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom)
956
Cary Clarkab2621d2018-01-30 10:08:57 -0500957#In Set
Cary Clark7fc1d122017-10-09 14:07:42 -0400958Sets Rect to (left, top, right, bottom).
959left and right are not sorted; left is not necessarily less than right.
960top and bottom are not sorted; top is not necessarily less than bottom.
961
962#Param left stored in fLeft ##
963#Param top stored in fTop ##
964#Param right stored in fRight ##
965#Param bottom stored in fBottom ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400966
967#Example
Cary Clark154beea2017-10-26 07:58:48 -0400968 SkRect rect1 = {3, 4, 1, 2};
969 SkDebugf("rect1: {%g, %g, %g, %g}\n", rect1.fLeft, rect1.fTop, rect1.fRight, rect1.fBottom);
970 SkRect rect2;
971 rect2.set(3, 4, 1, 2);
972 SkDebugf("rect2: {%g, %g, %g, %g}\n", rect2.fLeft, rect2.fTop, rect2.fRight, rect2.fBottom);
973#StdOut
974rect1: {3, 4, 1, 2}
975rect2: {3, 4, 1, 2}
976##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400977##
978
Cary Clark7fc1d122017-10-09 14:07:42 -0400979#SeeAlso setLTRB setXYWH SkIRect::set
Cary Clarkbc5697d2017-10-04 14:31:33 -0400980
981##
982
983# ------------------------------------------------------------------------------
984
985#Method void setLTRB(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom)
986
Cary Clarkab2621d2018-01-30 10:08:57 -0500987#In Set
988#Line # sets to SkScalar input (left, top, right, bottom) ##
Cary Clark7fc1d122017-10-09 14:07:42 -0400989Sets Rect to (left, top, right, bottom).
990left and right are not sorted; left is not necessarily less than right.
991top and bottom are not sorted; top is not necessarily less than bottom.
Cary Clarkbc5697d2017-10-04 14:31:33 -0400992
Cary Clark7fc1d122017-10-09 14:07:42 -0400993#Param left stored in fLeft ##
994#Param top stored in fTop ##
995#Param right stored in fRight ##
996#Param bottom stored in fBottom ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400997
998#Example
Cary Clark154beea2017-10-26 07:58:48 -0400999 SkRect rect1 = {3, 4, 1, 2};
1000 SkDebugf("rect1: {%g, %g, %g, %g}\n", rect1.fLeft, rect1.fTop, rect1.fRight, rect1.fBottom);
1001 SkRect rect2;
1002 rect2.setLTRB(3, 4, 1, 2);
1003 SkDebugf("rect2: {%g, %g, %g, %g}\n", rect2.fLeft, rect2.fTop, rect2.fRight, rect2.fBottom);
1004#StdOut
1005rect1: {3, 4, 1, 2}
1006rect2: {3, 4, 1, 2}
1007##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001008##
1009
Cary Clark7fc1d122017-10-09 14:07:42 -04001010#SeeAlso set setXYWH SkIRect::set
Cary Clarkbc5697d2017-10-04 14:31:33 -04001011
1012##
1013
1014# ------------------------------------------------------------------------------
1015
Cary Clarkbc5697d2017-10-04 14:31:33 -04001016#Method void set(const SkPoint pts[], int count)
1017
Cary Clarkab2621d2018-01-30 10:08:57 -05001018#In Set
Cary Clark7fc1d122017-10-09 14:07:42 -04001019Sets to bounds of Point array with count entries. If count is zero or smaller,
1020or if Point array contains an infinity or NaN, sets Rect to (0, 0, 0, 0).
Cary Clarkbc5697d2017-10-04 14:31:33 -04001021
Cary Clark7fc1d122017-10-09 14:07:42 -04001022Result is either empty or sorted: fLeft is less than or equal to fRight, and
1023fTop is less than or equal to fBottom.
1024
1025#Param pts Point array ##
1026#Param count entries in array ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001027
1028#Example
Cary Clark154beea2017-10-26 07:58:48 -04001029 SkPoint points[] = {{3, 4}, {1, 2}, {5, 6}, {SK_ScalarNaN, 8}};
1030 for (int count = 0; count <= (int) SK_ARRAY_COUNT(points); ++count) {
1031 SkRect rect;
1032 rect.set(points, count);
1033 if (count > 0) {
1034 SkDebugf("added: %3g, %g ", points[count - 1].fX, points[count - 1].fY);
1035 } else {
1036 SkDebugf("%14s", " ");
1037 }
1038 SkDebugf("count: %d rect: %g, %g, %g, %g\n", count,
1039 rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
1040 }
1041#StdOut
1042 count: 0 rect: 0, 0, 0, 0
1043added: 3, 4 count: 1 rect: 3, 4, 3, 4
1044added: 1, 2 count: 2 rect: 1, 2, 3, 4
1045added: 5, 6 count: 3 rect: 1, 2, 5, 6
1046added: nan, 8 count: 4 rect: 0, 0, 0, 0
1047##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001048##
1049
Cary Clark7fc1d122017-10-09 14:07:42 -04001050#SeeAlso setBounds setBoundsCheck SkPath::addPoly
Cary Clarkbc5697d2017-10-04 14:31:33 -04001051
1052##
1053
1054# ------------------------------------------------------------------------------
1055
Cary Clarkbc5697d2017-10-04 14:31:33 -04001056#Method void set(const SkPoint& p0, const SkPoint& p1)
1057
Cary Clarkab2621d2018-01-30 10:08:57 -05001058#In Set
Cary Clark7fc1d122017-10-09 14:07:42 -04001059Sets bounds to the smallest Rect enclosing Points p0 and p1. The result is
1060sorted and may be empty. Does not check to see if values are finite.
1061
1062#Param p0 corner to include ##
1063#Param p1 corner to include ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001064
1065#Example
Cary Clark7fc1d122017-10-09 14:07:42 -04001066#Description
Cary Clark682c58d2018-05-16 07:07:07 -04001067p0 and p1 may be swapped and have the same effect unless one contains NaN.
Cary Clark7fc1d122017-10-09 14:07:42 -04001068##
Cary Clark154beea2017-10-26 07:58:48 -04001069 SkPoint point1 = {SK_ScalarNaN, 8};
1070 SkPoint point2 = {3, 4};
1071 SkRect rect;
1072 rect.set(point1, point2);
1073 SkDebugf("rect: %g, %g, %g, %g\n", rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
1074 rect.set(point2, point1);
1075 SkDebugf("rect: %g, %g, %g, %g\n", rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
Cary Clarkbc5697d2017-10-04 14:31:33 -04001076##
1077
Cary Clark7fc1d122017-10-09 14:07:42 -04001078#SeeAlso setBounds setBoundsCheck
Cary Clarkbc5697d2017-10-04 14:31:33 -04001079
1080##
1081
1082# ------------------------------------------------------------------------------
1083
1084#Method void setXYWH(SkScalar x, SkScalar y, SkScalar width, SkScalar height)
1085
Cary Clarkab2621d2018-01-30 10:08:57 -05001086#In Set
1087#Line # sets to SkScalar input (x, y, width, height) ##
Cary Clark2be81cf2018-09-13 12:04:30 -04001088Sets Rect to #Formula # (x, y, x + width, y + height) ##.
1089Does not validate input; width or height may be negative.
Cary Clark7fc1d122017-10-09 14:07:42 -04001090
1091#Param x stored in fLeft ##
1092#Param y stored in fTop ##
1093#Param width added to x and stored in fRight ##
1094#Param height added to y and stored in fBottom ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001095
1096#Example
Cary Clark154beea2017-10-26 07:58:48 -04001097 SkRect rect;
1098 rect.setXYWH(5, 35, -15, 25);
1099 SkDebugf("rect: %g, %g, %g, %g isEmpty: %s\n", rect.left(), rect.top(), rect.right(),
1100 rect.bottom(), rect.isEmpty() ? "true" : "false");
1101 rect.sort();
1102 SkDebugf("rect: %g, %g, %g, %g isEmpty: %s\n", rect.left(), rect.top(), rect.right(),
1103 rect.bottom(), rect.isEmpty() ? "true" : "false");
Cary Clark7fc1d122017-10-09 14:07:42 -04001104#StdOut
Cary Clark154beea2017-10-26 07:58:48 -04001105rect: 5, 35, -10, 60 isEmpty: true
Cary Clark7fc1d122017-10-09 14:07:42 -04001106rect: -10, 35, 5, 60 isEmpty: false
1107##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001108##
1109
Cary Clark7fc1d122017-10-09 14:07:42 -04001110#SeeAlso MakeXYWH setLTRB set SkIRect::setXYWH
Cary Clarkbc5697d2017-10-04 14:31:33 -04001111
1112##
1113
1114# ------------------------------------------------------------------------------
1115
1116#Method void setWH(SkScalar width, SkScalar height)
1117
Cary Clarkab2621d2018-01-30 10:08:57 -05001118#In Set
1119#Line # sets to SkScalar input (0, 0, width, height) ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001120Sets Rect to (0, 0, width, height). Does not validate input;
1121width or height may be negative.
1122
1123#Param width stored in fRight ##
1124#Param height stored in fBottom ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001125
1126#Example
Cary Clark154beea2017-10-26 07:58:48 -04001127 SkRect rect;
1128 rect.setWH(-15, 25);
1129 SkDebugf("rect: %g, %g, %g, %g isEmpty: %s\n", rect.left(), rect.top(), rect.right(),
1130 rect.bottom(), rect.isEmpty() ? "true" : "false");
1131 rect.sort();
1132 SkDebugf("rect: %g, %g, %g, %g isEmpty: %s\n", rect.left(), rect.top(), rect.right(),
1133 rect.bottom(), rect.isEmpty() ? "true" : "false");
Cary Clark7fc1d122017-10-09 14:07:42 -04001134#StdOut
Cary Clark154beea2017-10-26 07:58:48 -04001135rect: 0, 0, -15, 25 isEmpty: true
Cary Clark7fc1d122017-10-09 14:07:42 -04001136rect: -15, 0, 0, 25 isEmpty: false
1137##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001138##
1139
Cary Clark7fc1d122017-10-09 14:07:42 -04001140#SeeAlso MakeWH setXYWH isetWH
Cary Clarkbc5697d2017-10-04 14:31:33 -04001141
1142##
1143
Cary Clark2dc84ad2018-01-26 12:56:22 -05001144#Subtopic Set ##
1145
1146#Subtopic From_Integers
Cary Clark682c58d2018-05-16 07:07:07 -04001147#Line # sets Scalar values from integer input ##
Cary Clark2dc84ad2018-01-26 12:56:22 -05001148
Cary Clark2dc84ad2018-01-26 12:56:22 -05001149# ------------------------------------------------------------------------------
1150
1151#Method void iset(int left, int top, int right, int bottom)
1152
Cary Clarkab2621d2018-01-30 10:08:57 -05001153#In From_Integers
1154#Line # sets to int input (left, top, right, bottom) ##
Cary Clark2dc84ad2018-01-26 12:56:22 -05001155Sets Rect to (left, top, right, bottom).
1156All parameters are promoted from integer to Scalar.
1157left and right are not sorted; left is not necessarily less than right.
1158top and bottom are not sorted; top is not necessarily less than bottom.
1159
1160#Param left promoted to SkScalar and stored in fLeft ##
1161#Param top promoted to SkScalar and stored in fTop ##
1162#Param right promoted to SkScalar and stored in fRight ##
1163#Param bottom promoted to SkScalar and stored in fBottom ##
1164
1165#Example
1166 SkRect rect1 = {3, 4, 1, 2};
1167 SkDebugf("rect1: {%g, %g, %g, %g}\n", rect1.fLeft, rect1.fTop, rect1.fRight, rect1.fBottom);
1168 SkRect rect2;
1169 rect2.iset(3, 4, 1, 2);
1170 SkDebugf("rect2: {%g, %g, %g, %g}\n", rect2.fLeft, rect2.fTop, rect2.fRight, rect2.fBottom);
1171#StdOut
1172rect1: {3, 4, 1, 2}
1173rect2: {3, 4, 1, 2}
1174##
1175##
1176
1177#SeeAlso set setLTRB SkIRect::set SkIntToScalar
1178
1179##
1180
1181# ------------------------------------------------------------------------------
1182
1183#Method void isetWH(int width, int height)
1184
Cary Clarkab2621d2018-01-30 10:08:57 -05001185#In From_Integers
1186#Line # sets to int input (0, 0, width, height) ##
Cary Clark2dc84ad2018-01-26 12:56:22 -05001187Sets Rect to (0, 0, width, height).
1188width and height may be zero or negative. width and height are promoted from
1189integer to SkScalar, large values may lose precision.
1190
1191#Param width promoted to SkScalar and stored in fRight ##
1192#Param height promoted to SkScalar and stored in fBottom ##
1193
1194#Example
1195 SkRect rect1 = {0, 0, 1, 2};
1196 SkDebugf("rect1: {%g, %g, %g, %g}\n", rect1.fLeft, rect1.fTop, rect1.fRight, rect1.fBottom);
1197 SkRect rect2;
1198 rect2.isetWH(1, 2);
1199 SkDebugf("rect2: {%g, %g, %g, %g}\n", rect2.fLeft, rect2.fTop, rect2.fRight, rect2.fBottom);
1200#StdOut
1201rect1: {0, 0, 1, 2}
1202rect2: {0, 0, 1, 2}
1203##
1204##
1205
1206#SeeAlso MakeWH MakeXYWH iset() SkIRect:MakeWH
1207
1208##
1209
1210#Subtopic From_Integers ##
1211
1212#Subtopic Inset_Outset_Offset
Cary Clark08895c42018-02-01 09:37:32 -05001213#Line # moves sides ##
Cary Clark2dc84ad2018-01-26 12:56:22 -05001214
Cary Clarkbc5697d2017-10-04 14:31:33 -04001215# ------------------------------------------------------------------------------
1216
Cary Clarkbc5697d2017-10-04 14:31:33 -04001217#Method SkRect makeOffset(SkScalar dx, SkScalar dy) const
1218
Cary Clarkab2621d2018-01-30 10:08:57 -05001219#In Inset_Outset_Offset
1220#Line # constructs from translated sides ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001221Returns Rect offset by (dx, dy).
Cary Clarkbc5697d2017-10-04 14:31:33 -04001222
Cary Clark7fc1d122017-10-09 14:07:42 -04001223If dx is negative, Rect returned is moved to the left.
1224If dx is positive, Rect returned is moved to the right.
1225If dy is negative, Rect returned is moved upward.
Cary Clark682c58d2018-05-16 07:07:07 -04001226If dy is positive, Rect returned is moved downward.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001227
Cary Clark7fc1d122017-10-09 14:07:42 -04001228#Param dx added to fLeft and fRight ##
1229#Param dy added to fTop and fBottom ##
1230
Cary Clark5538c132018-06-14 12:28:14 -04001231#Return Rect offset on axes, with original width and height ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001232
1233#Example
Cary Clark154beea2017-10-26 07:58:48 -04001234 SkRect rect = { 10, 50, 20, 60 };
1235 SkDebugf("rect: %g, %g, %g, %g isEmpty: %s\n", rect.left(), rect.top(), rect.right(),
1236 rect.bottom(), rect.isEmpty() ? "true" : "false");
1237 rect = rect.makeOffset(15, 32);
1238 SkDebugf("rect: %g, %g, %g, %g isEmpty: %s\n", rect.left(), rect.top(), rect.right(),
1239 rect.bottom(), rect.isEmpty() ? "true" : "false");
1240#StdOut
1241rect: 10, 50, 20, 60 isEmpty: false
1242rect: 25, 82, 35, 92 isEmpty: false
1243##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001244##
1245
Cary Clark7fc1d122017-10-09 14:07:42 -04001246#SeeAlso offset() makeInset makeOutset SkIRect::makeOffset
Cary Clarkbc5697d2017-10-04 14:31:33 -04001247
1248##
1249
1250# ------------------------------------------------------------------------------
1251
1252#Method SkRect makeInset(SkScalar dx, SkScalar dy) const
1253
Cary Clarkab2621d2018-01-30 10:08:57 -05001254#In Inset_Outset_Offset
1255#Line # constructs from sides moved symmetrically about the center ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001256Returns Rect, inset by (dx, dy).
Cary Clarkbc5697d2017-10-04 14:31:33 -04001257
Cary Clark7fc1d122017-10-09 14:07:42 -04001258If dx is negative, Rect returned is wider.
1259If dx is positive, Rect returned is narrower.
1260If dy is negative, Rect returned is taller.
Cary Clark682c58d2018-05-16 07:07:07 -04001261If dy is positive, Rect returned is shorter.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001262
Cary Clark7fc1d122017-10-09 14:07:42 -04001263#Param dx added to fLeft and subtracted from fRight ##
1264#Param dy added to fTop and subtracted from fBottom ##
1265
1266#Return Rect inset symmetrically left and right, top and bottom ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001267
1268#Example
Cary Clark154beea2017-10-26 07:58:48 -04001269 SkRect rect = { 10, 50, 20, 60 };
1270 SkDebugf("rect: %g, %g, %g, %g isEmpty: %s\n", rect.left(), rect.top(), rect.right(),
1271 rect.bottom(), rect.isEmpty() ? "true" : "false");
1272 rect = rect.makeInset(15, 32);
1273 SkDebugf("rect: %g, %g, %g, %g isEmpty: %s\n", rect.left(), rect.top(), rect.right(),
1274 rect.bottom(), rect.isEmpty() ? "true" : "false");
1275#StdOut
1276rect: 10, 50, 20, 60 isEmpty: false
1277rect: 25, 82, 5, 28 isEmpty: true
1278##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001279##
1280
Cary Clark7fc1d122017-10-09 14:07:42 -04001281#SeeAlso inset() makeOffset makeOutset SkIRect::makeInset
Cary Clarkbc5697d2017-10-04 14:31:33 -04001282
1283##
1284
1285# ------------------------------------------------------------------------------
1286
1287#Method SkRect makeOutset(SkScalar dx, SkScalar dy) const
1288
Cary Clarkab2621d2018-01-30 10:08:57 -05001289#In Inset_Outset_Offset
1290#Line # constructs from sides moved symmetrically about the center ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001291Returns Rect, outset by (dx, dy).
Cary Clarkbc5697d2017-10-04 14:31:33 -04001292
Cary Clark7fc1d122017-10-09 14:07:42 -04001293If dx is negative, Rect returned is narrower.
1294If dx is positive, Rect returned is wider.
1295If dy is negative, Rect returned is shorter.
Cary Clark682c58d2018-05-16 07:07:07 -04001296If dy is positive, Rect returned is taller.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001297
Cary Clark7fc1d122017-10-09 14:07:42 -04001298#Param dx subtracted to fLeft and added from fRight ##
1299#Param dy subtracted to fTop and added from fBottom ##
1300
1301#Return Rect outset symmetrically left and right, top and bottom ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001302
1303#Example
Cary Clark154beea2017-10-26 07:58:48 -04001304 SkRect rect = { 10, 50, 20, 60 };
1305 SkDebugf("rect: %g, %g, %g, %g isEmpty: %s\n", rect.left(), rect.top(), rect.right(),
1306 rect.bottom(), rect.isEmpty() ? "true" : "false");
1307 rect = rect.makeOutset(15, 32);
1308 SkDebugf("rect: %g, %g, %g, %g isEmpty: %s\n", rect.left(), rect.top(), rect.right(),
1309 rect.bottom(), rect.isEmpty() ? "true" : "false");
1310#StdOut
1311rect: 10, 50, 20, 60 isEmpty: false
1312rect: -5, 18, 35, 92 isEmpty: false
1313##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001314##
1315
Cary Clark7fc1d122017-10-09 14:07:42 -04001316#SeeAlso outset() makeOffset makeInset SkIRect::makeOutset
Cary Clarkbc5697d2017-10-04 14:31:33 -04001317
1318##
1319
1320# ------------------------------------------------------------------------------
1321
1322#Method void offset(SkScalar dx, SkScalar dy)
1323
Cary Clarkab2621d2018-01-30 10:08:57 -05001324#In Inset_Outset_Offset
1325#Line # translates sides without changing width and height ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001326Offsets Rect by adding dx to fLeft, fRight; and by adding dy to fTop, fBottom.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001327
Cary Clark7fc1d122017-10-09 14:07:42 -04001328If dx is negative, moves Rect to the left.
1329If dx is positive, moves Rect to the right.
1330If dy is negative, moves Rect upward.
Cary Clark682c58d2018-05-16 07:07:07 -04001331If dy is positive, moves Rect downward.
Cary Clark7fc1d122017-10-09 14:07:42 -04001332
1333#Param dx offset added to fLeft and fRight ##
1334#Param dy offset added to fTop and fBottom ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001335
1336#Example
Cary Clark154beea2017-10-26 07:58:48 -04001337 SkRect rect = { 10, 14, 50, 73 };
1338 rect.offset(5, 13);
1339 SkDebugf("rect: %g, %g, %g, %g\n", rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
1340#StdOut
1341rect: 15, 27, 55, 86
1342##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001343##
1344
Cary Clark7fc1d122017-10-09 14:07:42 -04001345#SeeAlso offsetTo makeOffset SkIRect::offset
Cary Clarkbc5697d2017-10-04 14:31:33 -04001346
1347##
1348
1349# ------------------------------------------------------------------------------
1350
1351#Method void offset(const SkPoint& delta)
1352
Cary Clarkab2621d2018-01-30 10:08:57 -05001353#In Inset_Outset_Offset
Cary Clark7fc1d122017-10-09 14:07:42 -04001354Offsets Rect by adding delta.fX to fLeft, fRight; and by adding delta.fY to
1355fTop, fBottom.
1356
1357If delta.fX is negative, moves Rect to the left.
1358If delta.fX is positive, moves Rect to the right.
1359If delta.fY is negative, moves Rect upward.
Cary Clark682c58d2018-05-16 07:07:07 -04001360If delta.fY is positive, moves Rect downward.
Cary Clark7fc1d122017-10-09 14:07:42 -04001361
1362#Param delta added to Rect ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001363
1364#Example
Cary Clark154beea2017-10-26 07:58:48 -04001365 SkRect rect = { 10, 14, 50, 73 };
1366 rect.offset({5, 13});
1367 SkDebugf("rect: %g, %g, %g, %g\n", rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
1368#StdOut
1369rect: 15, 27, 55, 86
1370##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001371##
1372
Cary Clark7fc1d122017-10-09 14:07:42 -04001373#SeeAlso offsetTo makeOffset SkIRect::offset
Cary Clarkbc5697d2017-10-04 14:31:33 -04001374
1375##
1376
1377# ------------------------------------------------------------------------------
1378
1379#Method void offsetTo(SkScalar newX, SkScalar newY)
1380
Cary Clarkab2621d2018-01-30 10:08:57 -05001381#In Inset_Outset_Offset
1382#Line # translates to (x, y) without changing width and height ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001383Offsets Rect so that fLeft equals newX, and fTop equals newY. width and height
1384are unchanged.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001385
Cary Clark7fc1d122017-10-09 14:07:42 -04001386#Param newX stored in fLeft, preserving width() ##
1387#Param newY stored in fTop, preserving height() ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001388
1389#Example
Cary Clark154beea2017-10-26 07:58:48 -04001390 SkRect rect = { 10, 14, 50, 73 };
1391 rect.offsetTo(15, 27);
1392 SkDebugf("rect: %g, %g, %g, %g\n", rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
1393#StdOut
1394rect: 15, 27, 55, 86
1395##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001396##
1397
Cary Clark7fc1d122017-10-09 14:07:42 -04001398#SeeAlso offset makeOffset setXYWH SkIRect::offsetTo
Cary Clarkbc5697d2017-10-04 14:31:33 -04001399
1400##
1401
1402# ------------------------------------------------------------------------------
1403
1404#Method void inset(SkScalar dx, SkScalar dy)
1405
Cary Clarkab2621d2018-01-30 10:08:57 -05001406#In Inset_Outset_Offset
1407#Line # moves the sides symmetrically about the center ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001408Insets Rect by (dx, dy).
Cary Clarkbc5697d2017-10-04 14:31:33 -04001409
Cary Clark7fc1d122017-10-09 14:07:42 -04001410If dx is positive, makes Rect narrower.
1411If dx is negative, makes Rect wider.
1412If dy is positive, makes Rect shorter.
1413If dy is negative, makes Rect taller.
1414
1415#Param dx added to fLeft and subtracted from fRight ##
1416#Param dy added to fTop and subtracted from fBottom ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001417
1418#Example
Cary Clark154beea2017-10-26 07:58:48 -04001419 SkRect rect = { 10, 14, 50, 73 };
1420 rect.inset(5, 13);
1421 SkDebugf("rect: %g, %g, %g, %g\n", rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
1422#StdOut
1423rect: 15, 27, 45, 60
1424##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001425##
1426
Cary Clark7fc1d122017-10-09 14:07:42 -04001427#SeeAlso outset makeInset SkIRect::inset
Cary Clarkbc5697d2017-10-04 14:31:33 -04001428
1429##
1430
1431# ------------------------------------------------------------------------------
1432
1433#Method void outset(SkScalar dx, SkScalar dy)
1434
Cary Clarkab2621d2018-01-30 10:08:57 -05001435#In Inset_Outset_Offset
1436#Line # moves the sides symmetrically about the center ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001437Outsets Rect by (dx, dy).
Cary Clarkbc5697d2017-10-04 14:31:33 -04001438
Cary Clark7fc1d122017-10-09 14:07:42 -04001439If dx is positive, makes Rect wider.
1440If dx is negative, makes Rect narrower.
1441If dy is positive, makes Rect taller.
1442If dy is negative, makes Rect shorter.
1443
1444#Param dx subtracted to fLeft and added from fRight ##
1445#Param dy subtracted to fTop and added from fBottom ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001446
1447#Example
Cary Clark154beea2017-10-26 07:58:48 -04001448 SkRect rect = { 10, 14, 50, 73 };
1449 rect.outset(5, 13);
1450 SkDebugf("rect: %g, %g, %g, %g\n", rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
1451#StdOut
1452rect: 5, 1, 55, 86
1453##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001454##
1455
Cary Clark7fc1d122017-10-09 14:07:42 -04001456#SeeAlso inset makeOutset SkIRect::outset
Cary Clarkbc5697d2017-10-04 14:31:33 -04001457
1458##
1459
Cary Clark2dc84ad2018-01-26 12:56:22 -05001460#Subtopic Inset_Outset_Offset ##
1461
1462#Subtopic Intersection
Cary Clark682c58d2018-05-16 07:07:07 -04001463#Line # sets to shared bounds ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001464
Cary Clark682c58d2018-05-16 07:07:07 -04001465Rects intersect when they enclose a common area. To intersect, each of the pair
Cary Clark7fc1d122017-10-09 14:07:42 -04001466must describe area; fLeft is less than fRight, and fTop is less than fBottom;
Cary Clark154beea2017-10-26 07:58:48 -04001467empty() returns false. The intersection of Rect pair can be described by:
Cary Clark2be81cf2018-09-13 12:04:30 -04001468#Formula # (max(a.fLeft, b.fLeft), max(a.fTop, b.fTop),
1469 min(a.fRight, b.fRight), min(a.fBottom, b.fBottom)) ##.
Cary Clark154beea2017-10-26 07:58:48 -04001470
Cary Clark7fc1d122017-10-09 14:07:42 -04001471The intersection is only meaningful if the resulting Rect is not empty and
1472describes an area: fLeft is less than fRight, and fTop is less than fBottom.
1473
Cary Clark2dc84ad2018-01-26 12:56:22 -05001474# ------------------------------------------------------------------------------
1475
Florin Malitaeb420452018-02-20 11:44:43 -05001476#Method bool contains(SkScalar x, SkScalar y) const
1477
1478#In Intersection
Cary Clarkedfe6702018-02-20 14:33:13 -05001479#Line # returns true if points are equal or inside ##
Florin Malitaeb420452018-02-20 11:44:43 -05001480Returns true if: fLeft <= x < fRight && fTop <= y < fBottom.
1481Returns false if SkRect is empty.
1482
Cary Clarkd2ca79c2018-08-10 13:09:13 -04001483#Param x test Point x-coordinate ##
1484#Param y test Point y-coordinate ##
Florin Malitaeb420452018-02-20 11:44:43 -05001485
Cary Clarkd2ca79c2018-08-10 13:09:13 -04001486#Return true if (x, y) is inside Rect ##
Florin Malitaeb420452018-02-20 11:44:43 -05001487
1488#Example
1489 SkRect rect = { 30, 50, 40, 60 };
1490 SkPoint tests[] = { { 30, 50 }, { 39, 49 }, { 29, 59 } };
1491 for (auto contained : tests) {
1492 SkDebugf("rect: (%g, %g, %g, %g) %s (%g, %g)\n",
1493 rect.left(), rect.top(), rect.right(), rect.bottom(),
1494 rect.contains(contained.x(), contained.y()) ? "contains" : "does not contain",
1495 contained.x(), contained.y());
1496 }
1497#StdOut
1498rect: (30, 50, 40, 60) contains (30, 50)
1499rect: (30, 50, 40, 60) does not contain (39, 49)
1500rect: (30, 50, 40, 60) does not contain (29, 59)
1501##
1502##
1503
Cary Clark53498e92018-06-28 19:13:56 -04001504#SeeAlso SkIRect::contains SkRRect::contains
Florin Malitaeb420452018-02-20 11:44:43 -05001505
1506##
1507
1508# ------------------------------------------------------------------------------
1509
Cary Clark2dc84ad2018-01-26 12:56:22 -05001510#Method bool contains(const SkRect& r) const
1511
Cary Clarkab2621d2018-01-30 10:08:57 -05001512#In Intersection
Cary Clark2dc84ad2018-01-26 12:56:22 -05001513Returns true if Rect contains r.
1514Returns false if Rect is empty or r is empty.
1515
1516Rect contains r when Rect area completely includes r area.
1517
1518#Param r Rect contained ##
1519
1520#Return true if all sides of Rect are outside r ##
1521
1522#Example
1523 SkRect rect = { 30, 50, 40, 60 };
1524 SkRect tests[] = { { 30, 50, 31, 51}, { 39, 49, 40, 50}, { 29, 59, 30, 60} };
1525 for (auto contained : tests) {
1526 SkDebugf("rect: (%g, %g, %g, %g) %s (%g, %g, %g, %g)\n",
1527 rect.left(), rect.top(), rect.right(), rect.bottom(),
1528 rect.contains(contained) ? "contains" : "does not contain",
1529 contained.left(), contained.top(), contained.right(), contained.bottom());
1530 }
1531#StdOut
1532rect: (30, 50, 40, 60) contains (30, 50, 31, 51)
1533rect: (30, 50, 40, 60) does not contain (39, 49, 40, 50)
1534rect: (30, 50, 40, 60) does not contain (29, 59, 30, 60)
1535##
1536##
1537
1538#SeeAlso SkIRect::contains
1539
1540##
1541
1542# ------------------------------------------------------------------------------
1543
1544#Method bool contains(const SkIRect& r) const
1545
Cary Clarkab2621d2018-01-30 10:08:57 -05001546#In Intersection
Cary Clark2dc84ad2018-01-26 12:56:22 -05001547Returns true if Rect contains r.
1548Returns false if Rect is empty or r is empty.
1549
1550Rect contains r when Rect area completely includes r area.
1551
1552#Param r IRect contained ##
1553
1554#Return true if all sides of Rect are outside r ##
1555
1556#Example
1557 SkRect rect = { 30, 50, 40, 60 };
1558 SkIRect tests[] = { { 30, 50, 31, 51}, { 39, 49, 40, 50}, { 29, 59, 30, 60} };
1559 for (auto contained : tests) {
1560 SkDebugf("rect: (%g, %g, %g, %g) %s (%d, %d, %d, %d)\n",
1561 rect.left(), rect.top(), rect.right(), rect.bottom(),
1562 rect.contains(contained) ? "contains" : "does not contain",
1563 contained.left(), contained.top(), contained.right(), contained.bottom());
1564 }
1565#StdOut
1566rect: (30, 50, 40, 60) contains (30, 50, 31, 51)
1567rect: (30, 50, 40, 60) does not contain (39, 49, 40, 50)
1568rect: (30, 50, 40, 60) does not contain (29, 59, 30, 60)
1569##
1570##
1571
1572#SeeAlso SkIRect::contains
1573
1574##
1575
Cary Clarkbc5697d2017-10-04 14:31:33 -04001576# ------------------------------------------------------------------------------
1577
1578#Method bool intersect(const SkRect& r)
1579
Cary Clarkab2621d2018-01-30 10:08:57 -05001580#In Intersection
1581#Line # sets to shared area; returns true if not empty ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001582Returns true if Rect intersects r, and sets Rect to intersection.
1583Returns false if Rect does not intersect r, and leaves Rect unchanged.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001584
Cary Clark7fc1d122017-10-09 14:07:42 -04001585Returns false if either r or Rect is empty, leaving Rect unchanged.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001586
Cary Clark7fc1d122017-10-09 14:07:42 -04001587#Param r limit of result ##
1588
1589#Return true if r and Rect have area in common ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001590
1591#Example
Cary Clark7fc1d122017-10-09 14:07:42 -04001592#Description
1593Two SkDebugf calls are required. If the calls are combined, their arguments
1594may not be evaluated in left to right order: the printed intersection may
1595be before or after the call to intersect.
1596##
Cary Clark154beea2017-10-26 07:58:48 -04001597 SkRect leftRect = { 10, 40, 50, 80 };
1598 SkRect rightRect = { 30, 60, 70, 90 };
1599 SkDebugf("%s intersection: ", leftRect.intersect(rightRect) ? "" : "no ");
Cary Clark682c58d2018-05-16 07:07:07 -04001600 SkDebugf("%g, %g, %g, %g\n", leftRect.left(), leftRect.top(),
Cary Clark7fc1d122017-10-09 14:07:42 -04001601 leftRect.right(), leftRect.bottom());
1602#StdOut
1603 intersection: 30, 60, 50, 80
Cary Clark682c58d2018-05-16 07:07:07 -04001604##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001605##
1606
Cary Clark7fc1d122017-10-09 14:07:42 -04001607#SeeAlso intersects Intersects join SkIRect::intersect
Cary Clarkbc5697d2017-10-04 14:31:33 -04001608
1609##
1610
1611# ------------------------------------------------------------------------------
1612
1613#Method bool intersect(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom)
1614
Cary Clarkab2621d2018-01-30 10:08:57 -05001615#In Intersection
Cary Clark7fc1d122017-10-09 14:07:42 -04001616Constructs Rect to intersect from (left, top, right, bottom). Does not sort
1617construction.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001618
Cary Clark7fc1d122017-10-09 14:07:42 -04001619Returns true if Rect intersects construction, and sets Rect to intersection.
1620Returns false if Rect does not intersect construction, and leaves Rect unchanged.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001621
Cary Clark7fc1d122017-10-09 14:07:42 -04001622Returns false if either construction or Rect is empty, leaving Rect unchanged.
1623
Cary Clark5538c132018-06-14 12:28:14 -04001624#Param left x-axis minimum of constructed Rect ##
1625#Param top y-axis minimum of constructed Rect ##
1626#Param right x-axis maximum of constructed Rect ##
1627#Param bottom y-axis maximum of constructed Rect ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001628
1629#Return true if construction and Rect have area in common ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001630
1631#Example
Cary Clark7fc1d122017-10-09 14:07:42 -04001632#Description
1633Two SkDebugf calls are required. If the calls are combined, their arguments
1634may not be evaluated in left to right order: the printed intersection may
1635be before or after the call to intersect.
1636##
Cary Clark154beea2017-10-26 07:58:48 -04001637 SkRect leftRect = { 10, 40, 50, 80 };
1638 SkDebugf("%s intersection: ", leftRect.intersect(30, 60, 70, 90) ? "" : "no ");
Cary Clark682c58d2018-05-16 07:07:07 -04001639 SkDebugf("%g, %g, %g, %g\n", leftRect.left(), leftRect.top(),
Cary Clark7fc1d122017-10-09 14:07:42 -04001640 leftRect.right(), leftRect.bottom());
1641#StdOut
1642 intersection: 30, 60, 50, 80
Cary Clark682c58d2018-05-16 07:07:07 -04001643##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001644##
1645
Cary Clark7fc1d122017-10-09 14:07:42 -04001646#SeeAlso intersects Intersects join SkIRect::intersect
Cary Clarkbc5697d2017-10-04 14:31:33 -04001647
1648##
1649
1650# ------------------------------------------------------------------------------
1651
Cary Clark61313f32018-10-08 14:57:48 -04001652#Method bool intersect(const SkRect& a, const SkRect& b)
Cary Clarkbc5697d2017-10-04 14:31:33 -04001653
Cary Clarkab2621d2018-01-30 10:08:57 -05001654#In Intersection
Cary Clark7fc1d122017-10-09 14:07:42 -04001655Returns true if a intersects b, and sets Rect to intersection.
1656Returns false if a does not intersect b, and leaves Rect unchanged.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001657
Cary Clark7fc1d122017-10-09 14:07:42 -04001658Returns false if either a or b is empty, leaving Rect unchanged.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001659
Cary Clark7fc1d122017-10-09 14:07:42 -04001660#Param a Rect to intersect ##
1661#Param b Rect to intersect ##
1662
1663#Return true if a and b have area in common ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001664
1665#Example
Cary Clark154beea2017-10-26 07:58:48 -04001666 SkRect result;
1667 bool intersected = result.intersect({ 10, 40, 50, 80 }, { 30, 60, 70, 90 });
1668 SkDebugf("%s intersection: %g, %g, %g, %g\n", intersected ? "" : "no ",
1669 result.left(), result.top(), result.right(), result.bottom());
Cary Clark7fc1d122017-10-09 14:07:42 -04001670#StdOut
1671 intersection: 30, 60, 50, 80
Cary Clark682c58d2018-05-16 07:07:07 -04001672##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001673##
1674
Cary Clark7fc1d122017-10-09 14:07:42 -04001675#SeeAlso intersects Intersects join SkIRect::intersect
Cary Clarkbc5697d2017-10-04 14:31:33 -04001676
1677##
1678
Cary Clark7fc1d122017-10-09 14:07:42 -04001679# ------------------------------------------------------------------------------
1680
Cary Clarkbc5697d2017-10-04 14:31:33 -04001681#Method bool intersects(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) const
1682
Cary Clarkab2621d2018-01-30 10:08:57 -05001683#In Intersection
1684#Line # returns true if areas overlap ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001685Constructs Rect to intersect from (left, top, right, bottom). Does not sort
1686construction.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001687
Cary Clark7fc1d122017-10-09 14:07:42 -04001688Returns true if Rect intersects construction.
1689Returns false if either construction or Rect is empty, or do not intersect.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001690
Cary Clark5538c132018-06-14 12:28:14 -04001691#Param left x-axis minimum of constructed Rect ##
1692#Param top y-axis minimum of constructed Rect ##
1693#Param right x-axis maximum of constructed Rect ##
1694#Param bottom y-axis maximum of constructed Rect ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001695
1696#Return true if construction and Rect have area in common ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001697
1698#Example
Cary Clark154beea2017-10-26 07:58:48 -04001699 SkRect rect = { 10, 40, 50, 80 };
1700 SkDebugf("%s intersection", rect.intersects(30, 60, 70, 90) ? "" : "no ");
Cary Clark7fc1d122017-10-09 14:07:42 -04001701#StdOut
1702 intersection
Cary Clark682c58d2018-05-16 07:07:07 -04001703##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001704##
1705
Cary Clark7fc1d122017-10-09 14:07:42 -04001706#SeeAlso intersect Intersects SkIRect::Intersects
Cary Clarkbc5697d2017-10-04 14:31:33 -04001707
1708##
1709
Cary Clark7fc1d122017-10-09 14:07:42 -04001710# ------------------------------------------------------------------------------
1711
Cary Clarkbc5697d2017-10-04 14:31:33 -04001712#Method bool intersects(const SkRect& r) const
1713
Cary Clarkab2621d2018-01-30 10:08:57 -05001714#In Intersection
Cary Clark7fc1d122017-10-09 14:07:42 -04001715Returns true if Rect intersects r.
1716Returns false if either r or Rect is empty, or do not intersect.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001717
Cary Clark7fc1d122017-10-09 14:07:42 -04001718#Param r Rect to intersect ##
1719
1720#Return true if r and Rect have area in common ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001721
1722#Example
Cary Clark154beea2017-10-26 07:58:48 -04001723 SkRect rect = { 10, 40, 50, 80 };
1724 SkDebugf("%s intersection", rect.intersects({30, 60, 70, 90}) ? "" : "no ");
Cary Clark7fc1d122017-10-09 14:07:42 -04001725#StdOut
1726 intersection
Cary Clark682c58d2018-05-16 07:07:07 -04001727##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001728##
1729
Cary Clark7fc1d122017-10-09 14:07:42 -04001730#SeeAlso intersect Intersects SkIRect::Intersects
Cary Clarkbc5697d2017-10-04 14:31:33 -04001731
1732##
1733
Cary Clark7fc1d122017-10-09 14:07:42 -04001734# ------------------------------------------------------------------------------
1735
Cary Clarkbc5697d2017-10-04 14:31:33 -04001736#Method static bool Intersects(const SkRect& a, const SkRect& b)
1737
Cary Clarkab2621d2018-01-30 10:08:57 -05001738#In Intersection
1739#Line # returns true if areas overlap ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001740Returns true if a intersects b.
1741Returns false if either a or b is empty, or do not intersect.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001742
Cary Clark7fc1d122017-10-09 14:07:42 -04001743#Param a Rect to intersect ##
1744#Param b Rect to intersect ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001745
Cary Clark7fc1d122017-10-09 14:07:42 -04001746#Return true if a and b have area in common ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001747
1748#Example
Cary Clark154beea2017-10-26 07:58:48 -04001749 SkDebugf("%s intersection", SkRect::Intersects({10, 40, 50, 80}, {30, 60, 70, 90}) ? "" : "no ");
Cary Clark7fc1d122017-10-09 14:07:42 -04001750#StdOut
1751 intersection
Cary Clark682c58d2018-05-16 07:07:07 -04001752##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001753##
1754
Cary Clark7fc1d122017-10-09 14:07:42 -04001755#SeeAlso intersect intersects SkIRect::Intersects
Cary Clarkbc5697d2017-10-04 14:31:33 -04001756
1757##
1758
Cary Clark2dc84ad2018-01-26 12:56:22 -05001759#Subtopic Intersection ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001760
Cary Clark2dc84ad2018-01-26 12:56:22 -05001761#Subtopic Join
Cary Clark682c58d2018-05-16 07:07:07 -04001762#Line # sets to union of bounds ##
Cary Clark2dc84ad2018-01-26 12:56:22 -05001763
Cary Clark7fc1d122017-10-09 14:07:42 -04001764# ------------------------------------------------------------------------------
Cary Clarkbc5697d2017-10-04 14:31:33 -04001765
1766#Method void join(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom)
1767
Cary Clarkab2621d2018-01-30 10:08:57 -05001768#In Join
1769#Line # sets to union of bounds ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001770Constructs Rect to intersect from (left, top, right, bottom). Does not sort
1771construction.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001772
Cary Clark7fc1d122017-10-09 14:07:42 -04001773Sets Rect to the union of itself and the construction.
1774
1775Has no effect if construction is empty. Otherwise, if Rect is empty, sets
1776Rect to construction.
1777
Cary Clark5538c132018-06-14 12:28:14 -04001778#Param left x-axis minimum of constructed Rect ##
1779#Param top y-axis minimum of constructed Rect ##
1780#Param right x-axis maximum of constructed Rect ##
1781#Param bottom y-axis maximum of constructed Rect ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001782
1783#Example
Cary Clark154beea2017-10-26 07:58:48 -04001784 SkRect rect = { 10, 20, 15, 25};
1785 rect.join(50, 60, 55, 65);
1786 SkDebugf("join: %g, %g, %g, %g\n", rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
Cary Clark7fc1d122017-10-09 14:07:42 -04001787#StdOut
1788 join: 10, 20, 55, 65
Cary Clark682c58d2018-05-16 07:07:07 -04001789##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001790##
1791
Cary Clark7fc1d122017-10-09 14:07:42 -04001792#SeeAlso joinNonEmptyArg joinPossiblyEmptyRect SkIRect::join
Cary Clarkbc5697d2017-10-04 14:31:33 -04001793
1794##
1795
Cary Clark7fc1d122017-10-09 14:07:42 -04001796# ------------------------------------------------------------------------------
1797
Cary Clarkbc5697d2017-10-04 14:31:33 -04001798#Method void join(const SkRect& r)
1799
Cary Clarkab2621d2018-01-30 10:08:57 -05001800#In Join
Cary Clark7fc1d122017-10-09 14:07:42 -04001801Sets Rect to the union of itself and r.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001802
Cary Clark7fc1d122017-10-09 14:07:42 -04001803Has no effect if r is empty. Otherwise, if Rect is empty, sets
1804Rect to r.
1805
1806#Param r expansion Rect ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001807
1808#Example
Cary Clark154beea2017-10-26 07:58:48 -04001809 SkRect rect = { 10, 20, 15, 25};
1810 rect.join({50, 60, 55, 65});
1811 SkDebugf("join: %g, %g, %g, %g\n", rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
Cary Clark7fc1d122017-10-09 14:07:42 -04001812#StdOut
1813 join: 10, 20, 55, 65
Cary Clark682c58d2018-05-16 07:07:07 -04001814##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001815##
1816
Cary Clark7fc1d122017-10-09 14:07:42 -04001817#SeeAlso joinNonEmptyArg joinPossiblyEmptyRect SkIRect::join
Cary Clarkbc5697d2017-10-04 14:31:33 -04001818
1819##
1820
Cary Clark7fc1d122017-10-09 14:07:42 -04001821# ------------------------------------------------------------------------------
1822
Cary Clarkbc5697d2017-10-04 14:31:33 -04001823#Method void joinNonEmptyArg(const SkRect& r)
1824
Cary Clarkab2621d2018-01-30 10:08:57 -05001825#In Join
1826#Line # sets to union of bounds, asserting that argument is not empty ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001827Sets Rect to the union of itself and r.
1828
1829Asserts if r is empty and SK_DEBUG is defined.
1830If Rect is empty, sets Rect to r.
1831
1832May produce incorrect results if r is empty.
1833
1834#Param r expansion Rect ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001835
1836#Example
Cary Clark7fc1d122017-10-09 14:07:42 -04001837#Description
1838Since Rect is not sorted, first result is copy of toJoin.
1839##
Cary Clark154beea2017-10-26 07:58:48 -04001840 SkRect rect = { 10, 100, 15, 0};
1841 SkRect sorted = rect.makeSorted();
1842 SkRect toJoin = { 50, 60, 55, 65 };
1843 rect.joinNonEmptyArg(toJoin);
1844 SkDebugf("rect: %g, %g, %g, %g\n", rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
1845 sorted.joinNonEmptyArg(toJoin);
Cary Clark7fc1d122017-10-09 14:07:42 -04001846 SkDebugf("sorted: %g, %g, %g, %g\n", sorted.fLeft, sorted.fTop, sorted.fRight, sorted.fBottom);
1847#StdOut
Cary Clark154beea2017-10-26 07:58:48 -04001848rect: 50, 60, 55, 65
Cary Clark7fc1d122017-10-09 14:07:42 -04001849sorted: 10, 0, 55, 100
Cary Clark682c58d2018-05-16 07:07:07 -04001850##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001851##
1852
Cary Clark7fc1d122017-10-09 14:07:42 -04001853#SeeAlso join joinPossiblyEmptyRect SkIRect::join
Cary Clarkbc5697d2017-10-04 14:31:33 -04001854
1855##
1856
Cary Clark7fc1d122017-10-09 14:07:42 -04001857# ------------------------------------------------------------------------------
1858
Cary Clarkbc5697d2017-10-04 14:31:33 -04001859#Method void joinPossiblyEmptyRect(const SkRect& r)
1860
Cary Clarkab2621d2018-01-30 10:08:57 -05001861#In Join
Cary Clark682c58d2018-05-16 07:07:07 -04001862#Line # sets to union of bounds; skips empty check for both ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001863Sets Rect to the union of itself and the construction.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001864
Cary Clark7fc1d122017-10-09 14:07:42 -04001865May produce incorrect results if Rect or r is empty.
1866
1867#Param r expansion Rect ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001868
1869#Example
Cary Clark7fc1d122017-10-09 14:07:42 -04001870#Description
1871Since Rect is not sorted, first result is not useful.
1872##
Cary Clark154beea2017-10-26 07:58:48 -04001873 SkRect rect = { 10, 100, 15, 0};
1874 SkRect sorted = rect.makeSorted();
1875 SkRect toJoin = { 50, 60, 55, 65 };
1876 rect.joinPossiblyEmptyRect(toJoin);
1877 SkDebugf("rect: %g, %g, %g, %g\n", rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
1878 sorted.joinPossiblyEmptyRect(toJoin);
1879 SkDebugf("sorted: %g, %g, %g, %g\n", sorted.fLeft, sorted.fTop, sorted.fRight, sorted.fBottom);
Cary Clark7fc1d122017-10-09 14:07:42 -04001880#StdOut
Cary Clark154beea2017-10-26 07:58:48 -04001881rect: 10, 60, 55, 65
Cary Clark7fc1d122017-10-09 14:07:42 -04001882sorted: 10, 0, 55, 100
Cary Clark682c58d2018-05-16 07:07:07 -04001883##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001884##
1885
Cary Clark7fc1d122017-10-09 14:07:42 -04001886#SeeAlso joinNonEmptyArg join SkIRect::join
Cary Clarkbc5697d2017-10-04 14:31:33 -04001887
1888##
1889
Cary Clark2dc84ad2018-01-26 12:56:22 -05001890#Subtopic Join ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001891
Cary Clark2dc84ad2018-01-26 12:56:22 -05001892#Subtopic Rounding
Cary Clark08895c42018-02-01 09:37:32 -05001893#Line # adjust to integer bounds ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001894
Cary Clarkbc5697d2017-10-04 14:31:33 -04001895#Method void round(SkIRect* dst) const
1896
Cary Clarkab2621d2018-01-30 10:08:57 -05001897#In Rounding
1898#Line # sets members to nearest integer value ##
Cary Clark7fc1d122017-10-09 14:07:42 -04001899Sets IRect by adding 0.5 and discarding the fractional portion of Rect
Cary Clark2be81cf2018-09-13 12:04:30 -04001900members, using #Formula # (SkScalarRoundToInt(fLeft), SkScalarRoundToInt(fTop),
1901 SkScalarRoundToInt(fRight), SkScalarRoundToInt(fBottom)) ##.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001902
Cary Clark7fc1d122017-10-09 14:07:42 -04001903#Param dst storage for IRect ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001904
1905#Example
Cary Clark154beea2017-10-26 07:58:48 -04001906 SkRect rect = { 30.5f, 50.5f, 40.5f, 60.5f };
1907 SkIRect round;
1908 rect.round(&round);
1909 SkDebugf("round: %d, %d, %d, %d\n", round.fLeft, round.fTop, round.fRight, round.fBottom);
Cary Clark7fc1d122017-10-09 14:07:42 -04001910#StdOut
1911round: 31, 51, 41, 61
1912##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001913##
1914
Cary Clark7fc1d122017-10-09 14:07:42 -04001915#SeeAlso roundIn roundOut SkScalarRoundToInt
Cary Clarkbc5697d2017-10-04 14:31:33 -04001916
1917##
1918
Cary Clark7fc1d122017-10-09 14:07:42 -04001919# ------------------------------------------------------------------------------
1920
Cary Clarkbc5697d2017-10-04 14:31:33 -04001921#Method void roundOut(SkIRect* dst) const
1922
Cary Clarkab2621d2018-01-30 10:08:57 -05001923#In Rounding
1924#Line # sets members to nearest integer value away from opposite ##
Cary Clark2be81cf2018-09-13 12:04:30 -04001925Sets IRect by discarding the fractional portion of fLeft and fTop; and rounding
1926up fRight and fBottom, using
1927#Formula # (SkScalarFloorToInt(fLeft), SkScalarFloorToInt(fTop),
1928 SkScalarCeilToInt(fRight), SkScalarCeilToInt(fBottom)) ##.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001929
Cary Clark7fc1d122017-10-09 14:07:42 -04001930#Param dst storage for IRect ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001931
1932#Example
Cary Clark154beea2017-10-26 07:58:48 -04001933 SkRect rect = { 30.5f, 50.5f, 40.5f, 60.5f };
1934 SkIRect round;
1935 rect.roundOut(&round);
1936 SkDebugf("round: %d, %d, %d, %d\n", round.fLeft, round.fTop, round.fRight, round.fBottom);
Cary Clark7fc1d122017-10-09 14:07:42 -04001937#StdOut
1938round: 30, 50, 41, 61
1939##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001940##
1941
Cary Clark7fc1d122017-10-09 14:07:42 -04001942#SeeAlso roundIn round SkScalarRoundToInt
Cary Clarkbc5697d2017-10-04 14:31:33 -04001943
1944##
1945
Cary Clark7fc1d122017-10-09 14:07:42 -04001946# ------------------------------------------------------------------------------
1947
Cary Clark682c58d2018-05-16 07:07:07 -04001948#Method void roundOut(SkRect* dst) const
Cary Clarkbc5697d2017-10-04 14:31:33 -04001949
Cary Clarkab2621d2018-01-30 10:08:57 -05001950#In Rounding
Cary Clark2be81cf2018-09-13 12:04:30 -04001951Sets Rect by discarding the fractional portion of fLeft and fTop; and rounding
1952up fRight and fBottom, using
1953#Formula # (SkScalarFloorToInt(fLeft), SkScalarFloorToInt(fTop),
1954 SkScalarCeilToInt(fRight), SkScalarCeilToInt(fBottom)) ##.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001955
Cary Clark7fc1d122017-10-09 14:07:42 -04001956#Param dst storage for Rect ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001957
1958#Example
Cary Clark154beea2017-10-26 07:58:48 -04001959 SkRect rect = { 30.5f, 50.5f, 40.5f, 60.5f };
1960 SkRect round;
1961 rect.roundOut(&round);
1962 SkDebugf("round: %g, %g, %g, %g\n", round.fLeft, round.fTop, round.fRight, round.fBottom);
Cary Clark7fc1d122017-10-09 14:07:42 -04001963#StdOut
1964round: 30, 50, 41, 61
1965##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001966##
1967
Cary Clark7fc1d122017-10-09 14:07:42 -04001968#SeeAlso roundIn round SkScalarRoundToInt
Cary Clarkbc5697d2017-10-04 14:31:33 -04001969
1970##
1971
Cary Clark7fc1d122017-10-09 14:07:42 -04001972# ------------------------------------------------------------------------------
1973
Cary Clarkbc5697d2017-10-04 14:31:33 -04001974#Method void roundIn(SkIRect* dst) const
1975
Cary Clarkab2621d2018-01-30 10:08:57 -05001976#In Rounding
1977#Line # sets members to nearest integer value towards opposite ##
Cary Clark2be81cf2018-09-13 12:04:30 -04001978Sets Rect by rounding up fLeft and fTop; and discarding the fractional portion
1979of fRight and fBottom, using
1980#Formula # (SkScalarCeilToInt(fLeft), SkScalarCeilToInt(fTop),
1981 SkScalarFloorToInt(fRight), SkScalarFloorToInt(fBottom)) ##.
Cary Clarkbc5697d2017-10-04 14:31:33 -04001982
Cary Clark7fc1d122017-10-09 14:07:42 -04001983#Param dst storage for IRect ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001984
1985#Example
Cary Clark154beea2017-10-26 07:58:48 -04001986 SkRect rect = { 30.5f, 50.5f, 40.5f, 60.5f };
1987 SkIRect round;
1988 rect.roundIn(&round);
1989 SkDebugf("round: %d, %d, %d, %d\n", round.fLeft, round.fTop, round.fRight, round.fBottom);
Cary Clark7fc1d122017-10-09 14:07:42 -04001990#StdOut
Cary Clark154beea2017-10-26 07:58:48 -04001991round: 31, 51, 40, 60
Cary Clark7fc1d122017-10-09 14:07:42 -04001992##
Cary Clarkbc5697d2017-10-04 14:31:33 -04001993##
1994
Cary Clark7fc1d122017-10-09 14:07:42 -04001995#SeeAlso roundOut round SkScalarRoundToInt
Cary Clarkbc5697d2017-10-04 14:31:33 -04001996
1997##
1998
Cary Clark7fc1d122017-10-09 14:07:42 -04001999# ------------------------------------------------------------------------------
2000
Cary Clarkbc5697d2017-10-04 14:31:33 -04002001#Method SkIRect round() const
2002
Cary Clarkab2621d2018-01-30 10:08:57 -05002003#In Rounding
Cary Clark7fc1d122017-10-09 14:07:42 -04002004Returns IRect by adding 0.5 and discarding the fractional portion of Rect
Cary Clark2be81cf2018-09-13 12:04:30 -04002005members, using #Formula # (SkScalarRoundToInt(fLeft), SkScalarRoundToInt(fTop),
2006 SkScalarRoundToInt(fRight), SkScalarRoundToInt(fBottom)) ##.
Cary Clarkbc5697d2017-10-04 14:31:33 -04002007
Cary Clark7fc1d122017-10-09 14:07:42 -04002008#Return rounded IRect ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04002009
2010#Example
Cary Clark154beea2017-10-26 07:58:48 -04002011 SkRect rect = { 30.5f, 50.5f, 40.5f, 60.5f };
2012 SkIRect round = rect.round();
2013 SkDebugf("round: %d, %d, %d, %d\n", round.fLeft, round.fTop, round.fRight, round.fBottom);
Cary Clark7fc1d122017-10-09 14:07:42 -04002014#StdOut
Cary Clark154beea2017-10-26 07:58:48 -04002015round: 31, 51, 41, 61
Cary Clark7fc1d122017-10-09 14:07:42 -04002016##
Cary Clarkbc5697d2017-10-04 14:31:33 -04002017##
2018
Cary Clark7fc1d122017-10-09 14:07:42 -04002019#SeeAlso roundOut roundIn SkScalarRoundToInt
Cary Clarkbc5697d2017-10-04 14:31:33 -04002020
2021##
2022
Cary Clark7fc1d122017-10-09 14:07:42 -04002023# ------------------------------------------------------------------------------
2024
Cary Clarkbc5697d2017-10-04 14:31:33 -04002025#Method SkIRect roundOut() const
2026
Cary Clarkab2621d2018-01-30 10:08:57 -05002027#In Rounding
Cary Clark2be81cf2018-09-13 12:04:30 -04002028Sets IRect by discarding the fractional portion of fLeft and fTop; and rounding
2029up fRight and fBottom, using
2030#Formula # (SkScalarFloorToInt(fLeft), SkScalarFloorToInt(fTop),
2031 SkScalarCeilToInt(fRight), SkScalarCeilToInt(fBottom)) ##.
Cary Clarkbc5697d2017-10-04 14:31:33 -04002032
Cary Clark7fc1d122017-10-09 14:07:42 -04002033#Return rounded IRect ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04002034
2035#Example
Cary Clark154beea2017-10-26 07:58:48 -04002036 SkRect rect = { 30.5f, 50.5f, 40.5f, 60.5f };
2037 SkIRect round = rect.roundOut();
2038 SkDebugf("round: %d, %d, %d, %d\n", round.fLeft, round.fTop, round.fRight, round.fBottom);
Cary Clark7fc1d122017-10-09 14:07:42 -04002039#StdOut
Cary Clark154beea2017-10-26 07:58:48 -04002040round: 30, 50, 41, 61
Cary Clark7fc1d122017-10-09 14:07:42 -04002041##
Cary Clarkbc5697d2017-10-04 14:31:33 -04002042##
2043
Cary Clark7fc1d122017-10-09 14:07:42 -04002044#SeeAlso round roundIn SkScalarRoundToInt
Cary Clarkbc5697d2017-10-04 14:31:33 -04002045
2046##
2047
Cary Clark2dc84ad2018-01-26 12:56:22 -05002048#Subtopic Rounding ##
2049
2050#Subtopic Sorting
Cary Clark08895c42018-02-01 09:37:32 -05002051#Line # orders sides ##
Cary Clark2dc84ad2018-01-26 12:56:22 -05002052
Cary Clark7fc1d122017-10-09 14:07:42 -04002053# ------------------------------------------------------------------------------
2054
Cary Clarkbc5697d2017-10-04 14:31:33 -04002055#Method void sort()
2056
Cary Clarkab2621d2018-01-30 10:08:57 -05002057#In Sorting
2058#Line # orders sides from smaller to larger ##
Cary Clark7fc1d122017-10-09 14:07:42 -04002059Swaps fLeft and fRight if fLeft is greater than fRight; and swaps
2060fTop and fBottom if fTop is greater than fBottom. Result may be empty;
2061and width() and height() will be zero or positive.
Cary Clarkbc5697d2017-10-04 14:31:33 -04002062
2063#Example
Cary Clark154beea2017-10-26 07:58:48 -04002064 SkRect rect = { 30.5f, 50.5f, 20.5f, 10.5f };
2065 SkDebugf("rect: %g, %g, %g, %g\n", rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
2066 rect.sort();
2067 SkDebugf("sorted: %g, %g, %g, %g\n", rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
Cary Clark7fc1d122017-10-09 14:07:42 -04002068#StdOut
Cary Clark154beea2017-10-26 07:58:48 -04002069rect: 30.5, 50.5, 20.5, 10.5
Cary Clark7fc1d122017-10-09 14:07:42 -04002070sorted: 20.5, 10.5, 30.5, 50.5
2071##
Cary Clarkbc5697d2017-10-04 14:31:33 -04002072##
2073
Cary Clark2dc84ad2018-01-26 12:56:22 -05002074#SeeAlso makeSorted SkIRect::sort isSorted
Cary Clarkbc5697d2017-10-04 14:31:33 -04002075
2076##
2077
Cary Clark7fc1d122017-10-09 14:07:42 -04002078# ------------------------------------------------------------------------------
2079
Cary Clarkbc5697d2017-10-04 14:31:33 -04002080#Method SkRect makeSorted() const
2081
Cary Clarkab2621d2018-01-30 10:08:57 -05002082#In Sorting
Cary Clark61313f32018-10-08 14:57:48 -04002083#In Constructors
Cary Clark682c58d2018-05-16 07:07:07 -04002084#Line # constructs Rect, ordering sides from smaller to larger ##
Cary Clark7fc1d122017-10-09 14:07:42 -04002085Returns Rect with fLeft and fRight swapped if fLeft is greater than fRight; and
2086with fTop and fBottom swapped if fTop is greater than fBottom. Result may be empty;
2087and width() and height() will be zero or positive.
Cary Clarkbc5697d2017-10-04 14:31:33 -04002088
Cary Clark7fc1d122017-10-09 14:07:42 -04002089#Return sorted Rect ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04002090
2091#Example
Cary Clark154beea2017-10-26 07:58:48 -04002092 SkRect rect = { 30.5f, 50.5f, 20.5f, 10.5f };
2093 SkDebugf("rect: %g, %g, %g, %g\n", rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
2094 SkRect sort = rect.makeSorted();
2095 SkDebugf("sorted: %g, %g, %g, %g\n", sort.fLeft, sort.fTop, sort.fRight, sort.fBottom);
Cary Clark7fc1d122017-10-09 14:07:42 -04002096#StdOut
Cary Clark154beea2017-10-26 07:58:48 -04002097rect: 30.5, 50.5, 20.5, 10.5
Cary Clark7fc1d122017-10-09 14:07:42 -04002098sorted: 20.5, 10.5, 30.5, 50.5
2099##
Cary Clarkbc5697d2017-10-04 14:31:33 -04002100##
2101
Cary Clark2dc84ad2018-01-26 12:56:22 -05002102#SeeAlso sort SkIRect::makeSorted isSorted
Cary Clarkbc5697d2017-10-04 14:31:33 -04002103
2104##
2105
Cary Clark2dc84ad2018-01-26 12:56:22 -05002106#Subtopic Sorting ##
2107
Cary Clark7fc1d122017-10-09 14:07:42 -04002108# ------------------------------------------------------------------------------
2109
Cary Clarkbc5697d2017-10-04 14:31:33 -04002110#Method const SkScalar* asScalars() const
Cary Clark4855f782018-02-06 09:41:53 -05002111#In Property
Cary Clarkab2621d2018-01-30 10:08:57 -05002112#Line # returns pointer to members as array ##
Cary Clark7fc1d122017-10-09 14:07:42 -04002113Returns pointer to first Scalar in Rect, to treat it as an array with four
2114entries.
Cary Clarkbc5697d2017-10-04 14:31:33 -04002115
Cary Clark7fc1d122017-10-09 14:07:42 -04002116#Return pointer to fLeft ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04002117
2118#Example
Cary Clark154beea2017-10-26 07:58:48 -04002119 SkRect rect = {7, 11, 13, 17};
2120SkDebugf("rect.asScalars() %c= &rect.fLeft\n", rect.asScalars() == &rect.fLeft? '=' : '!');
2121#StdOut
2122rect.asScalars() == &rect.fLeft
2123##
Cary Clarkbc5697d2017-10-04 14:31:33 -04002124##
2125
Cary Clark7fc1d122017-10-09 14:07:42 -04002126#SeeAlso toQuad
2127
Cary Clarkbc5697d2017-10-04 14:31:33 -04002128##
2129
Cary Clark7fc1d122017-10-09 14:07:42 -04002130# ------------------------------------------------------------------------------
2131
Cary Clarkbc5697d2017-10-04 14:31:33 -04002132#Method void dump(bool asHex) const
Cary Clark4855f782018-02-06 09:41:53 -05002133#In Property
Cary Clarkab2621d2018-01-30 10:08:57 -05002134#Line # sends text representation to standard output using floats ##
Cary Clark682c58d2018-05-16 07:07:07 -04002135Writes text representation of Rect to standard output. Set asHex to true to
Cary Clark7fc1d122017-10-09 14:07:42 -04002136generate exact binary representations of floating point numbers.
2137
2138#Param asHex true if SkScalar values are written as hexadecimal ##
Cary Clarkbc5697d2017-10-04 14:31:33 -04002139
2140#Example
Cary Clark7fc1d122017-10-09 14:07:42 -04002141 SkRect rect = {20, 30, 40, 50};
2142 for (bool dumpAsHex : { false, true } ) {
2143 rect.dump(dumpAsHex);
2144 SkDebugf("\n");
2145 }
2146#StdOut
Cary Clark154beea2017-10-26 07:58:48 -04002147SkRect::MakeLTRB(20, 30, 40, 50);
2148
2149SkRect::MakeLTRB(SkBits2Float(0x41a00000), /* 20.000000 */
2150 SkBits2Float(0x41f00000), /* 30.000000 */
2151 SkBits2Float(0x42200000), /* 40.000000 */
2152 SkBits2Float(0x42480000) /* 50.000000 */);
Cary Clark7fc1d122017-10-09 14:07:42 -04002153##
Cary Clarkbc5697d2017-10-04 14:31:33 -04002154##
2155
Cary Clark7fc1d122017-10-09 14:07:42 -04002156#SeeAlso dumpHex
2157
Cary Clarkbc5697d2017-10-04 14:31:33 -04002158##
2159
Cary Clark7fc1d122017-10-09 14:07:42 -04002160# ------------------------------------------------------------------------------
2161
Cary Clarkbc5697d2017-10-04 14:31:33 -04002162#Method void dump() const
2163
Cary Clark7fc1d122017-10-09 14:07:42 -04002164Writes text representation of Rect to standard output. The representation may be
2165directly compiled as C++ code. Floating point values are written
2166with limited precision; it may not be possible to reconstruct original Rect
2167from output.
2168
Cary Clarkbc5697d2017-10-04 14:31:33 -04002169#Example
Cary Clark154beea2017-10-26 07:58:48 -04002170SkRect rect = {6.f / 7, 2.f / 3, 26.f / 10, 42.f / 6};
2171rect.dump();
2172SkRect copy = SkRect::MakeLTRB(0.857143f, 0.666667f, 2.6f, 7);
2173SkDebugf("rect is " "%s" "equal to copy\n", rect == copy ? "" : "not ");
Cary Clark7fc1d122017-10-09 14:07:42 -04002174#StdOut
Cary Clark154beea2017-10-26 07:58:48 -04002175SkRect::MakeLTRB(0.857143f, 0.666667f, 2.6f, 7);
Cary Clark7fc1d122017-10-09 14:07:42 -04002176rect is not equal to copy
2177##
Cary Clarkbc5697d2017-10-04 14:31:33 -04002178##
2179
Cary Clark7fc1d122017-10-09 14:07:42 -04002180#SeeAlso dumpHex
2181
Cary Clarkbc5697d2017-10-04 14:31:33 -04002182##
2183
Cary Clark7fc1d122017-10-09 14:07:42 -04002184# ------------------------------------------------------------------------------
2185
Cary Clarkbc5697d2017-10-04 14:31:33 -04002186#Method void dumpHex() const
Cary Clark4855f782018-02-06 09:41:53 -05002187#In Property
Cary Clarkab2621d2018-01-30 10:08:57 -05002188#Line # sends text representation to standard output using hexadecimal ##
Cary Clark7fc1d122017-10-09 14:07:42 -04002189Writes text representation of Rect to standard output. The representation may be
2190directly compiled as C++ code. Floating point values are written
2191in hexadecimal to preserve their exact bit pattern. The output reconstructs the
2192original Rect.
2193
Cary Clark682c58d2018-05-16 07:07:07 -04002194Use instead of dump() when submitting
2195#A bug reports against Skia # https://bug.skia.org ##
Cary Clark7fc1d122017-10-09 14:07:42 -04002196.
2197
Cary Clarkbc5697d2017-10-04 14:31:33 -04002198#Example
Cary Clark154beea2017-10-26 07:58:48 -04002199 SkRect rect = {6.f / 7, 2.f / 3, 26.f / 10, 42.f / 6};
2200rect.dumpHex();
2201SkRect copy = SkRect::MakeLTRB(SkBits2Float(0x3f5b6db7), /* 0.857143 */
2202 SkBits2Float(0x3f2aaaab), /* 0.666667 */
2203 SkBits2Float(0x40266666), /* 2.600000 */
2204 SkBits2Float(0x40e00000) /* 7.000000 */);
Cary Clark7fc1d122017-10-09 14:07:42 -04002205SkDebugf("rect is " "%s" "equal to copy\n", rect == copy ? "" : "not ");
2206#StdOut
Cary Clark154beea2017-10-26 07:58:48 -04002207SkRect::MakeLTRB(SkBits2Float(0x3f5b6db7), /* 0.857143 */
2208 SkBits2Float(0x3f2aaaab), /* 0.666667 */
2209 SkBits2Float(0x40266666), /* 2.600000 */
2210 SkBits2Float(0x40e00000) /* 7.000000 */);
Cary Clark7fc1d122017-10-09 14:07:42 -04002211rect is equal to copy
Cary Clarkbc5697d2017-10-04 14:31:33 -04002212##
Cary Clark7fc1d122017-10-09 14:07:42 -04002213##
2214
2215#SeeAlso dump
Cary Clark69261ba2018-10-11 15:28:31 -04002216
2217##
2218
2219#Struct SkRect ##
2220
2221#Topic Rect ##