contourdatatools.hpp 379 B

12345678910111213141516171819
  1. //
  2. // contourdatatools.hpp
  3. // auto_fill_jewel_v3
  4. //
  5. // Created by Red on 2024/11/25.
  6. // 计算轮廓数据包围盒子
  7. #ifndef contourdatatools_hpp
  8. #define contourdatatools_hpp
  9. #include <stdio.h>
  10. #include "contourdata.h"
  11. #include "BoostGeometryTools.hpp"
  12. struct ContourDataTools {
  13. static ContourData convex_hull(ContourData& cd) ;
  14. };
  15. #endif /* contourdatatools_hpp */