mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 16:57:53 -06:00
Merge fixes
This commit is contained in:
parent
32ce0b91dc
commit
4e9372c58b
3 changed files with 10 additions and 9 deletions
|
@ -60,7 +60,7 @@ struct Contour3D {
|
|||
points.insert(points.end(), triangles.begin(), triangles.end());
|
||||
indices.reserve(indices.size() + points.size() / 3);
|
||||
|
||||
for(size_t i = offs; i < points.size(); i += 3)
|
||||
for(int i = (int)offs; i < (int)points.size(); i += 3)
|
||||
indices.emplace_back(i, i + 1, i + 2);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue