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
13## Summary
14
15
16### Member Variables
17
18| Name| Description|
19| -------- | -------- |
20| double [x](#x) | X coordinate. The value range is [0,1]. |
21| double [y](#y) | Y coordinate. The value range is [0,1]. |
22
23
24## Member Variable Description
25
26
27### x
28
29```
30double Camera_Point::x
31```
32**Description**
33
34X coordinate. The value range is [0,1].
35
36
37### y
38
39```
40double Camera_Point::y
41```
42**Description**
43
44Y coordinate. The value range is [0,1].
45