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