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 13## Summary 14 15 16### Member Variables 17 18| Name| Description| 19| -------- | -------- | 20| [x](#x) | Start X coordinate of the rectangle.| 21| [y](#y) | Start Y coordinate of the rectangle.| 22| [w](#w) | Width of the rectangle.| 23| [h](#h) | Height of the rectangle.| 24 25 26## x 27 28``` 29int32_t Rect::x 30``` 31 32**Description** 33 34Start X coordinate of the rectangle. 35 36 37## y 38 39``` 40int32_t Rect::y 41``` 42 43**Description** 44 45Start Y coordinate of the rectangle. 46 47 48## w 49 50``` 51uint32_t Rext::w 52``` 53 54**Description** 55 56Width of the rectangle. 57 58 59## h 60 61``` 62uint32_t Rext::h 63``` 64 65**Description** 66 67Height of the rectangle. 68