• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Rect
2
3
4## Overview
5
6The **Rect** struct describes a rectangle.
7
8**Since**: 8
9
10**Related module**: [NativeWindow](_native_window.md)
11
12**Header file**: [external_window.h](external__window_8h.md)
13
14## Summary
15
16
17### Member Variables
18
19| Name| Description|
20| -------- | -------- |
21| [x](#x) | Start X coordinate of the rectangle.|
22| [y](#y) | Start Y coordinate of the rectangle.|
23| [w](#w) | Width of the rectangle.|
24| [h](#h) | Height of the rectangle.|
25
26
27## x
28
29```
30int32_t Rect::x
31```
32
33**Description**
34
35Start X coordinate of the rectangle.
36
37
38## y
39
40```
41int32_t Rect::y
42```
43
44**Description**
45
46Start Y coordinate of the rectangle.
47
48
49## w
50
51```
52uint32_t Rext::w
53```
54
55**Description**
56
57Width of the rectangle.
58
59
60## h
61
62```
63uint32_t Rext::h
64```
65
66**Description**
67
68Height of the rectangle.
69