1# Camera_Point 2 3 4## Overview 5 6The Camera_Point struct describes the parameters related to a point. 7 8**Since**: 11 9 10**Related module**: [OH_Camera](_o_h___camera.md) 11 12**Header file**: [camera.h](camera_8h.md) 13 14 15## Summary 16 17 18### Member Variables 19 20| Name| Description| 21| -------- | -------- | 22| double [x](#x) | X coordinate. The value range is [0,1]. | 23| double [y](#y) | Y coordinate. The value range is [0,1]. | 24 25 26## Member Variable Description 27 28 29### x 30 31``` 32double Camera_Point::x 33``` 34**Description** 35 36X coordinate. The value range is [0,1]. 37 38 39### y 40 41``` 42double Camera_Point::y 43``` 44**Description** 45 46Y coordinate. The value range is [0,1]. 47