RICOH Camera USB SDK for C++  1.1.0
RICOH Camera USB SDK for C++
point.hpp
Go to the documentation of this file.
1 // Copyright (c) 2017 Ricoh Company, Ltd. All Rights Reserved.
2 #ifndef RICOH_CAMERA_SDK_POINT_HPP_
3 #define RICOH_CAMERA_SDK_POINT_HPP_
4 
6 
7 namespace Ricoh {
8 namespace CameraController {
9 
10 
14 struct Point {
15  float x;
16  float y;
17 };
18 
19 } // namespace CameraController
20 } // namespace Ricoh
21 
22 #endif // RICOH_CAMERA_SDK_POINT_HPP_
Definition: camera_device.hpp:13
The structure to represent point.
Definition: point.hpp:14
float y
Definition: point.hpp:16
float x
Definition: point.hpp:15