point3D_tool.h 556 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // Created by huli on 2021/3/24.
  3. //
  4. #ifndef NNXX_TESTS_POINT3D_TOOL_H
  5. #define NNXX_TESTS_POINT3D_TOOL_H
  6. class Point3D_tool
  7. {
  8. public:
  9. //坐标
  10. struct Point3D
  11. {
  12. float x=0; //x轴
  13. float y=0; //y轴
  14. float z=0; //z轴
  15. };
  16. //平面坐标的限定范围
  17. struct Point3D_box
  18. {
  19. float x_min=0; //x轴最小值
  20. float x_max=0; //x轴最大值
  21. float y_min=0; //y轴最小值
  22. float y_max=0; //y轴最大值
  23. float z_min=0; //z轴最小值
  24. float z_max=0; //z轴最大值
  25. };
  26. };
  27. #endif //NNXX_TESTS_POINT3D_TOOL_H