1# Camera_Rect 2 3 4## Overview 5 6The Camera_Rect struct describes a rectangle. 7 8**Since**: 11 9 10**Related module**: [OH_Camera](_o_h___camera.md) 11 12 13## Summary 14 15 16### Member Variables 17 18| Name| Description| 19| -------- | -------- | 20| int32_t [topLeftX](#topleftx) | X coordinate at the upper left corner. | 21| int32_t [topLeftY](#toplefty) | Y coordinate at the upper left corner. | 22| int32_t [width](#width) | Width of the rectangle, in pixels. | 23| int32_t [height](#height) | Height of the rectangle, in pixels. | 24 25 26## Member Variable Description 27 28 29### height 30 31``` 32int32_t Camera_Rect::height 33``` 34**Description** 35 36Height of the rectangle, in pixels. 37 38 39### topLeftX 40 41``` 42int32_t Camera_Rect::topLeftX 43``` 44**Description** 45 46X coordinate at the upper left corner. 47 48 49### topLeftY 50 51``` 52int32_t Camera_Rect::topLeftY 53``` 54**Description** 55 56Y coordinate at the upper left corner. 57 58 59### width 60 61``` 62int32_t Camera_Rect::width 63``` 64**Description** 65 66Width of the rectangle, in pixels. 67