1SkIPoint Reference 2=== 3 4# <a name="IPoint"></a> IPoint 5 6## <a name="Overview"></a> Overview 7 8## <a name="Overview_Subtopic"></a> Overview Subtopic 9 10| name | description | 11| --- | --- | 12| <a href="#Constructor">Constructor</a> | functions that construct <a href="#SkIPoint">SkIPoint</a> | 13| <a href="#Member_Function">Member Function</a> | static functions and member methods | 14| <a href="#Member">Member</a> | member values | 15| <a href="#Operator">Operator</a> | operator overloading methods | 16| <a href="#Related_Function">Related Function</a> | similar methods grouped together | 17 18# <a name="SkIPoint"></a> Struct SkIPoint 19<a href="#SkIPoint">SkIPoint</a> holds two 32 bit integer coordinates. 20 21## <a name="Related_Function"></a> Related Function 22 23| name | description | 24| --- | --- | 25| <a href="#Property">Property</a> | member values | 26| <a href="#Set">Set</a> | replaces all values | 27 28## <a name="Member_Function"></a> Member Function 29 30| name | description | 31| --- | --- | 32| <a href="#SkIPoint_Make">Make</a> | constructs from integer inputs | 33| <a href="#SkIPoint_equals">equals</a> | returns true if members are equal | 34| <a href="#SkIPoint_isZero">isZero</a> | returns true if both members equal zero | 35| <a href="#SkIPoint_set">set</a> | sets to integer input | 36| <a href="#SkIPoint_x">x</a> | returns <a href="#SkIPoint_fX">fX</a> | 37| <a href="#SkIPoint_y">y</a> | returns <a href="#SkIPoint_fY">fY</a> | 38 39## <a name="Member"></a> Member 40 41| name | description | 42| --- | --- | 43| <a href="#SkIPoint_fX">fX</a> | x-axis value | 44| <a href="#SkIPoint_fY">fY</a> | y-axis value | 45 46<a name="SkIPoint_fX"> <code><strong>int32_t fX</strong></code> </a> 47 48x-axis value used by <a href="#IPoint">IPoint</a>. 49 50<a name="SkIPoint_fY"> <code><strong>int32_t fY</strong></code> </a> 51 52y-axis value used by <a href="#IPoint">IPoint</a>. 53 54## <a name="Constructor"></a> Constructor 55 56| name | description | 57| --- | --- | 58| <a href="#SkIPoint_Make">Make</a> | constructs from integer inputs | 59 60<a name="SkIPoint_Make"></a> 61## Make 62 63<pre style="padding: 1em 1em 1em 1em;width: 62.5em; background-color: #f0f0f0"> 64static constexpr SkIPoint Make(int32_t x, int32_t y) 65</pre> 66 67Sets <a href="#SkIPoint_fX">fX</a> to x, <a href="#SkIPoint_fY">fY</a> to y. 68 69### Parameters 70 71<table> <tr> <td><a name="SkIPoint_Make_x"> <code><strong>x </strong></code> </a></td> <td> 72integer x-axis value of constructed <a href="#IPoint">IPoint</a></td> 73 </tr> <tr> <td><a name="SkIPoint_Make_y"> <code><strong>y </strong></code> </a></td> <td> 74integer y-axis value of constructed <a href="#IPoint">IPoint</a></td> 75 </tr> 76</table> 77 78### Return Value 79 80<a href="#IPoint">IPoint</a> (x, y) 81 82### Example 83 84<div><fiddle-embed name="e5cf5159525bd3140f288a95fe641fae"> 85 86#### Example Output 87 88~~~~ 89pt1 == pt2 90~~~~ 91 92</fiddle-embed></div> 93 94### See Also 95 96<a href="#SkIPoint_set">set</a> <a href="SkPoint_Reference#SkPoint_iset">SkPoint::iset()</a><sup><a href="SkPoint_Reference#SkPoint_iset_2">[2]</a></sup> <a href="SkPoint_Reference#SkPoint_Make">SkPoint::Make</a> <a href="SkIPoint16_Reference#SkIPoint16_Make">SkIPoint16::Make</a> 97 98--- 99 100## <a name="Property"></a> Property 101 102| name | description | 103| --- | --- | 104| <a href="#SkIPoint_isZero">isZero</a> | returns true if both members equal zero | 105| <a href="#SkIPoint_x">x</a> | returns <a href="#SkIPoint_fX">fX</a> | 106| <a href="#SkIPoint_y">y</a> | returns <a href="#SkIPoint_fY">fY</a> | 107 108<a name="SkIPoint_x"></a> 109## x 110 111<pre style="padding: 1em 1em 1em 1em;width: 62.5em; background-color: #f0f0f0"> 112int32_t x() const 113</pre> 114 115Returns x-axis value of <a href="#IPoint">IPoint</a>. 116 117### Return Value 118 119<a href="#SkIPoint_fX">fX</a> 120 121### Example 122 123<div><fiddle-embed name="eed4185294f8a8216fc354e6ee6b2e3a"> 124 125#### Example Output 126 127~~~~ 128pt1.fX == pt1.x() 129~~~~ 130 131</fiddle-embed></div> 132 133### See Also 134 135<a href="#SkIPoint_y">y</a> <a href="SkPoint_Reference#SkPoint_x">SkPoint::x()</a> <a href="SkIPoint16_Reference#SkIPoint16_x">SkIPoint16::x()</a> 136 137--- 138 139<a name="SkIPoint_y"></a> 140## y 141 142<pre style="padding: 1em 1em 1em 1em;width: 62.5em; background-color: #f0f0f0"> 143int32_t y() const 144</pre> 145 146Returns y-axis value of <a href="#IPoint">IPoint</a>. 147 148### Return Value 149 150<a href="#SkIPoint_fY">fY</a> 151 152### Example 153 154<div><fiddle-embed name="35c41b8ba7cebf8c9a7a8494e610e14d"> 155 156#### Example Output 157 158~~~~ 159pt1.fY == pt1.y() 160~~~~ 161 162</fiddle-embed></div> 163 164### See Also 165 166<a href="#SkIPoint_x">x</a> <a href="SkPoint_Reference#SkPoint_y">SkPoint::y()</a> <a href="SkIPoint16_Reference#SkIPoint16_y">SkIPoint16::y()</a> 167 168--- 169 170<a name="SkIPoint_isZero"></a> 171## isZero 172 173<pre style="padding: 1em 1em 1em 1em;width: 62.5em; background-color: #f0f0f0"> 174bool isZero() const 175</pre> 176 177Returns true if <a href="#SkIPoint_fX">fX</a> and <a href="#SkIPoint_fY">fY</a> are both zero. 178 179### Return Value 180 181true if <a href="#SkIPoint_fX">fX</a> is zero and <a href="#SkIPoint_fY">fY</a> is zero 182 183### Example 184 185<div><fiddle-embed name="658c1df611b4577cc7e0bb384e95737e"> 186 187#### Example Output 188 189~~~~ 190pt.isZero() == true 191~~~~ 192 193</fiddle-embed></div> 194 195### See Also 196 197<a href="SkPoint_Reference#SkPoint_isZero">SkPoint::isZero</a> 198 199--- 200 201## <a name="Set"></a> Set 202 203| name | description | 204| --- | --- | 205| <a href="#SkIPoint_set">set</a> | sets to integer input | 206 207<a name="SkIPoint_set"></a> 208## set 209 210<pre style="padding: 1em 1em 1em 1em;width: 62.5em; background-color: #f0f0f0"> 211void set(int32_t x, int32_t y) 212</pre> 213 214Sets <a href="#SkIPoint_fX">fX</a> to x and <a href="#SkIPoint_fY">fY</a> to y. 215 216### Parameters 217 218<table> <tr> <td><a name="SkIPoint_set_x"> <code><strong>x </strong></code> </a></td> <td> 219new value for <a href="#SkIPoint_fX">fX</a></td> 220 </tr> <tr> <td><a name="SkIPoint_set_y"> <code><strong>y </strong></code> </a></td> <td> 221new value for <a href="#SkIPoint_fY">fY</a></td> 222 </tr> 223</table> 224 225### Example 226 227<div><fiddle-embed name="165418b5718d79d8f1682a8a0ee32ba0"> 228 229#### Example Output 230 231~~~~ 232pt1 == pt2 233~~~~ 234 235</fiddle-embed></div> 236 237### See Also 238 239<a href="#SkIPoint_Make">Make</a> <a href="SkIPoint16_Reference#SkIPoint16_set">SkIPoint16::set</a> 240 241--- 242 243## <a name="Operator"></a> Operator 244 245| name | description | 246| --- | --- | 247| <a href="#SkIPoint_equals">equals</a> | returns true if members are equal | 248| <a href="#SkIPoint_notequal_operator">operator!=(const SkIPoint& a, const SkIPoint& b)</a> | returns true if <a href="#IPoint">IPoints</a> are unequal | 249| <a href="#SkIPoint_add_operator">operator+(const SkIPoint& a, const SkIVector& b)</a> | returns <a href="#IPoint">IPoint</a> offset by <a href="#IVector">IVector</a> | 250| <a href="#SkIPoint_addto_operator">operator+=(const SkIVector& v)</a> | adds <a href="#IVector">IVector</a> to <a href="#IPoint">IPoint</a> | 251| <a href="#SkIPoint_minus_operator">operator-() const</a> | reverses sign of <a href="#IPoint">IPoint</a> | 252| <a href="#SkIPoint_subtract_operator">operator-(const SkIPoint& a, const SkIPoint& b)</a> | returns <a href="#IVector">IVector</a> between <a href="#IPoint">IPoints</a> | 253| <a href="#SkIPoint_subtractfrom_operator">operator-=(const SkIVector& v)</a> | subtracts <a href="#IVector">IVector</a> from <a href="#IPoint">IPoint</a> | 254| <a href="#SkIPoint_equal_operator">operator==(const SkIPoint& a, const SkIPoint& b)</a> | returns true if <a href="#IPoint">IPoints</a> are equal | 255 256<a name="SkIPoint_minus_operator"></a> 257## operator- 258 259<pre style="padding: 1em 1em 1em 1em;width: 62.5em; background-color: #f0f0f0"> 260SkIPoint operator-() _const 261</pre> 262 263Returns <a href="#IPoint">IPoint</a> changing the signs of <a href="#SkIPoint_fX">fX</a> and <a href="#SkIPoint_fY">fY</a>. 264 265### Return Value 266 267<a href="#IPoint">IPoint</a> as (-<a href="#SkIPoint_fX">fX</a>, -<a href="#SkIPoint_fY">fY</a>) 268 269### Example 270 271<div><fiddle-embed name="d283e8876366349aedd85b65cadb3706"> 272 273#### Example Output 274 275~~~~ 276pt: 0, 0 negate: 0, 0 277pt: -1, -2 negate: 1, 2 278pt: 2147483647, -2147483647 negate: -2147483647, 2147483647 279pt: -2147483648, -2147483648 negate: -2147483648, -2147483648 280~~~~ 281 282</fiddle-embed></div> 283 284### See Also 285 286<a href="#SkIPoint_subtract_operator">operator-(const SkIPoint& a, const SkIPoint& b)</a> <a href="#SkIPoint_subtractfrom_operator">operator-=(const SkIVector& v)</a> <a href="SkPoint_Reference#SkPoint_minus_operator">SkPoint::operator-() const</a> 287 288--- 289 290<a name="SkIPoint_addto_operator"></a> 291## operator+= 292 293<pre style="padding: 1em 1em 1em 1em;width: 62.5em; background-color: #f0f0f0"> 294void operator+=(const SkIVector& v) 295</pre> 296 297Offsets <a href="#IPoint">IPoint</a> by <a href="#IVector">IVector</a> <a href="#SkIPoint_addto_operator_v">v</a>. Sets <a href="#IPoint">IPoint</a> to(<a href="#SkIPoint_fX">fX</a> + <a href="#SkIPoint_addto_operator_v">v</a>.<a href="#SkIPoint_fX">fX</a>, <a href="#SkIPoint_fY">fY</a> + <a href="#SkIPoint_addto_operator_v">v</a>.<a href="#SkIPoint_fY">fY</a>). 298 299### Parameters 300 301<table> <tr> <td><a name="SkIPoint_addto_operator_v"> <code><strong>v </strong></code> </a></td> <td> 302<a href="#IVector">IVector</a> to add</td> 303 </tr> 304</table> 305 306### Example 307 308<div><fiddle-embed name="4eb2d95c9e9a66f05296e345bb68bd51"></fiddle-embed></div> 309 310### See Also 311 312<a href="#SkIPoint_add_operator">operator+(const SkIPoint& a, const SkIVector& b)</a> <a href="SkPoint_Reference#SkPoint_addto_operator">SkPoint::operator+=(const SkVector& v)</a> 313 314--- 315 316<a name="SkIPoint_subtractfrom_operator"></a> 317## operator-= 318 319<pre style="padding: 1em 1em 1em 1em;width: 62.5em; background-color: #f0f0f0"> 320void operator-=(const SkIVector& v) 321</pre> 322 323Subtracts <a href="#IVector">IVector</a> <a href="#SkIPoint_subtractfrom_operator_v">v</a> from <a href="#IPoint">IPoint</a>. Sets <a href="#IPoint">IPoint</a> to: 324(<a href="#SkIPoint_fX">fX</a> - <a href="#SkIPoint_subtractfrom_operator_v">v</a>.<a href="#SkIPoint_fX">fX</a>, <a href="#SkIPoint_fY">fY</a> - <a href="#SkIPoint_subtractfrom_operator_v">v</a>.<a href="#SkIPoint_fY">fY</a>). 325 326### Parameters 327 328<table> <tr> <td><a name="SkIPoint_subtractfrom_operator_v"> <code><strong>v </strong></code> </a></td> <td> 329<a href="#IVector">IVector</a> to subtract</td> 330 </tr> 331</table> 332 333### Example 334 335<div><fiddle-embed name="a01e533dc7ab34ed728dc4e7a5f1f0ee"></fiddle-embed></div> 336 337### See Also 338 339<a href="#SkIPoint_subtract_operator">operator-(const SkIPoint& a, const SkIPoint& b)</a> <a href="SkPoint_Reference#SkPoint_subtractfrom_operator">SkPoint::operator-=(const SkVector& v)</a> 340 341--- 342 343<a name="SkIPoint_equals"></a> 344## equals 345 346<pre style="padding: 1em 1em 1em 1em;width: 62.5em; background-color: #f0f0f0"> 347bool equals(int32_t x, int32_t y) const 348</pre> 349 350Returns true if <a href="#IPoint">IPoint</a> is equivalent to <a href="#IPoint">IPoint</a> constructed from (x, y). 351 352### Parameters 353 354<table> <tr> <td><a name="SkIPoint_equals_x"> <code><strong>x </strong></code> </a></td> <td> 355value compared with <a href="#SkIPoint_fX">fX</a></td> 356 </tr> <tr> <td><a name="SkIPoint_equals_y"> <code><strong>y </strong></code> </a></td> <td> 357value compared with <a href="#SkIPoint_fY">fY</a></td> 358 </tr> 359</table> 360 361### Return Value 362 363true if <a href="#IPoint">IPoint</a> equals (x, y) 364 365### Example 366 367<div><fiddle-embed name="64f575d36439d5b69aaed14ffeff1cc4"> 368 369#### Example Output 370 371~~~~ 372pt: 0, 0 == pt 373pt: -1, -2 == pt 374pt: 2147483647, -1 == pt 375pt: -2147483648, -1 == pt 376~~~~ 377 378</fiddle-embed></div> 379 380### See Also 381 382<a href="#SkIPoint_equal_operator">operator==(const SkIPoint& a, const SkIPoint& b)</a> 383 384--- 385 386<a name="SkIPoint_equal_operator"></a> 387## operator== 388 389<pre style="padding: 1em 1em 1em 1em;width: 62.5em; background-color: #f0f0f0"> 390bool operator==(const SkIPoint& a, const SkIPoint& b) 391</pre> 392 393Returns true if <a href="#SkIPoint_equal_operator_a">a</a> is equivalent to <a href="#SkIPoint_equal_operator_b">b</a>. 394 395### Parameters 396 397<table> <tr> <td><a name="SkIPoint_equal_operator_a"> <code><strong>a </strong></code> </a></td> <td> 398<a href="#IPoint">IPoint</a> to compare</td> 399 </tr> <tr> <td><a name="SkIPoint_equal_operator_b"> <code><strong>b </strong></code> </a></td> <td> 400<a href="#IPoint">IPoint</a> to compare</td> 401 </tr> 402</table> 403 404### Return Value 405 406true if <a href="#SkIPoint_equal_operator_a">a</a>.<a href="#SkIPoint_fX">fX</a> == <a href="#SkIPoint_equal_operator_b">b</a>.<a href="#SkIPoint_fX">fX</a> and <a href="#SkIPoint_equal_operator_a">a</a>.<a href="#SkIPoint_fY">fY</a> == <a href="#SkIPoint_equal_operator_b">b</a>.<a href="#SkIPoint_fY">fY</a> 407 408### Example 409 410<div><fiddle-embed name="37ffe2817d720f99e6c252332ce70460"> 411 412#### Example Output 413 414~~~~ 415pt: 0, 0 == pt 416pt: -1, -2 == pt 417pt: 2147483647, -1 == pt 418pt: -2147483648, -1 == pt 419~~~~ 420 421</fiddle-embed></div> 422 423### See Also 424 425<a href="#SkIPoint_equals">equals</a> <a href="#SkIPoint_notequal_operator">operator!=(const SkIPoint& a, const SkIPoint& b)</a> 426 427--- 428 429<a name="SkIPoint_notequal_operator"></a> 430## operator!= 431 432<pre style="padding: 1em 1em 1em 1em;width: 62.5em; background-color: #f0f0f0"> 433bool operator!=(const SkIPoint& a, const SkIPoint& b) 434</pre> 435 436Returns true if <a href="#SkIPoint_notequal_operator_a">a</a> is not equivalent to <a href="#SkIPoint_notequal_operator_b">b</a>. 437 438### Parameters 439 440<table> <tr> <td><a name="SkIPoint_notequal_operator_a"> <code><strong>a </strong></code> </a></td> <td> 441<a href="#IPoint">IPoint</a> to compare</td> 442 </tr> <tr> <td><a name="SkIPoint_notequal_operator_b"> <code><strong>b </strong></code> </a></td> <td> 443<a href="#IPoint">IPoint</a> to compare</td> 444 </tr> 445</table> 446 447### Return Value 448 449true if <a href="#SkIPoint_notequal_operator_a">a</a>.<a href="#SkIPoint_fX">fX</a> != <a href="#SkIPoint_notequal_operator_b">b</a>.<a href="#SkIPoint_fX">fX</a> or <a href="#SkIPoint_notequal_operator_a">a</a>.<a href="#SkIPoint_fY">fY</a> != <a href="#SkIPoint_notequal_operator_b">b</a>.<a href="#SkIPoint_fY">fY</a> 450 451### Example 452 453<div><fiddle-embed name="dd89dc48dff69b53d99530b120f204bc"> 454 455#### Example Output 456 457~~~~ 458pt: 0, 0 == pt 459pt: -1, -2 == pt 460pt: 2147483647, -1 == pt 461pt: -2147483648, -1 == pt 462~~~~ 463 464</fiddle-embed></div> 465 466### See Also 467 468<a href="#SkIPoint_equal_operator">operator==(const SkIPoint& a, const SkIPoint& b)</a> <a href="#SkIPoint_equals">equals</a> 469 470--- 471 472<a name="SkIPoint_subtract_operator"></a> 473## operator- 474 475<pre style="padding: 1em 1em 1em 1em;width: 62.5em; background-color: #f0f0f0"> 476SkIVector operator-(const SkIPoint& a, const SkIPoint& b) 477</pre> 478 479Returns <a href="#IVector">IVector</a> from <a href="#SkIPoint_subtract_operator_b">b</a> to <a href="#SkIPoint_subtract_operator_a">a</a>; computed as(<a href="#SkIPoint_subtract_operator_a">a</a>.<a href="#SkIPoint_fX">fX</a> - <a href="#SkIPoint_subtract_operator_b">b</a>.<a href="#SkIPoint_fX">fX</a>, <a href="#SkIPoint_subtract_operator_a">a</a>.<a href="#SkIPoint_fY">fY</a> - <a href="#SkIPoint_subtract_operator_b">b</a>.<a href="#SkIPoint_fY">fY</a>). 480 481Can also be used to subtract <a href="#IVector">IVector</a> from <a href="#IVector">IVector</a>, returning <a href="#IVector">IVector</a>. 482 483### Parameters 484 485<table> <tr> <td><a name="SkIPoint_subtract_operator_a"> <code><strong>a </strong></code> </a></td> <td> 486<a href="#IPoint">IPoint</a> or <a href="#IVector">IVector</a> to subtract from</td> 487 </tr> <tr> <td><a name="SkIPoint_subtract_operator_b"> <code><strong>b </strong></code> </a></td> <td> 488<a href="#IVector">IVector</a> to subtract</td> 489 </tr> 490</table> 491 492### Return Value 493 494<a href="#IVector">IVector</a> from <a href="#SkIPoint_subtract_operator_b">b</a> to <a href="#SkIPoint_subtract_operator_a">a</a> 495 496### Example 497 498<div><fiddle-embed name="e626e26bf557857b824aa7d03f723e0f"></fiddle-embed></div> 499 500### See Also 501 502<a href="#SkIPoint_subtractfrom_operator">operator-=(const SkIVector& v)</a> 503 504--- 505 506<a name="SkIPoint_add_operator"></a> 507## operator+ 508 509<pre style="padding: 1em 1em 1em 1em;width: 62.5em; background-color: #f0f0f0"> 510SkIPoint operator+(const SkIPoint& a, const SkIVector& b) 511</pre> 512 513Returns <a href="#IPoint">IPoint</a> resulting from <a href="#IPoint">IPoint</a> <a href="#SkIPoint_add_operator_a">a</a> offset by <a href="#IVector">IVector</a> <a href="#SkIPoint_add_operator_b">b</a>, computed as: 514(<a href="#SkIPoint_add_operator_a">a</a>.<a href="#SkIPoint_fX">fX</a> + <a href="#SkIPoint_add_operator_b">b</a>.<a href="#SkIPoint_fX">fX</a>, <a href="#SkIPoint_add_operator_a">a</a>.<a href="#SkIPoint_fY">fY</a> + <a href="#SkIPoint_add_operator_b">b</a>.<a href="#SkIPoint_fY">fY</a>). 515 516Can also be used to offset <a href="#IPoint">IPoint</a> <a href="#SkIPoint_add_operator_b">b</a> by <a href="#IVector">IVector</a> <a href="#SkIPoint_add_operator_a">a</a>, returning <a href="#IPoint">IPoint</a>. 517Can also be used to add <a href="#IVector">IVector</a> to <a href="#IVector">IVector</a>, returning <a href="#IVector">IVector</a>. 518 519### Parameters 520 521<table> <tr> <td><a name="SkIPoint_add_operator_a"> <code><strong>a </strong></code> </a></td> <td> 522<a href="#IPoint">IPoint</a> or <a href="#IVector">IVector</a> to add to</td> 523 </tr> <tr> <td><a name="SkIPoint_add_operator_b"> <code><strong>b </strong></code> </a></td> <td> 524<a href="#IPoint">IPoint</a> or <a href="#IVector">IVector</a> to add</td> 525 </tr> 526</table> 527 528### Return Value 529 530<a href="#IPoint">IPoint</a> equal to <a href="#SkIPoint_add_operator_a">a</a> offset by <a href="#SkIPoint_add_operator_b">b</a> 531 532### Example 533 534<div><fiddle-embed name="63f4cba971c6d8434595906f865b5a29"></fiddle-embed></div> 535 536### See Also 537 538<a href="#SkIPoint_addto_operator">operator+=(const SkIVector& v)</a> 539 540--- 541 542# <a name="IVector"></a> IVector 543