fix warning that breaks the pixi build

This commit is contained in:
David Kaufman
2025-12-25 19:19:27 -05:00
parent dc7f2c7bfd
commit 11752b8280

View File

@@ -1467,7 +1467,7 @@ double Adaptive2d::CalcCutArea(
vector<DoublePoint> polygon;
for (const auto p : path) {
polygon.push_back({p.X, p.Y});
polygon.push_back({(double)p.X, (double)p.Y});
}
polygons.push_back(polygon);
}