123456789101112131415161718192021222324252627282930313233 |
- //
- // Created by huli on 2021/3/24.
- //
- #ifndef NNXX_TESTS_POINT3D_TOOL_H
- #define NNXX_TESTS_POINT3D_TOOL_H
- class Point3D_tool
- {
- public:
- //坐标
- struct Point3D
- {
- float x=0; //x轴
- float y=0; //y轴
- float z=0; //z轴
- };
- //平面坐标的限定范围
- struct Point3D_box
- {
- float x_min=0; //x轴最小值
- float x_max=0; //x轴最大值
- float y_min=0; //y轴最小值
- float y_max=0; //y轴最大值
- float z_min=0; //z轴最小值
- float z_max=0; //z轴最大值
- };
- };
- #endif //NNXX_TESTS_POINT3D_TOOL_H
|