12345678910111213141516171819 |
- //
- // contourdatatools.hpp
- // auto_fill_jewel_v3
- //
- // Created by Red on 2024/11/25.
- // 计算轮廓数据包围盒子
- #ifndef contourdatatools_hpp
- #define contourdatatools_hpp
- #include <stdio.h>
- #include "contourdata.h"
- #include "BoostGeometryTools.hpp"
- struct ContourDataTools {
- static ContourData convex_hull(ContourData& cd) ;
- };
- #endif /* contourdatatools_hpp */
|