1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-25 10:15:50 +00:00

Fix integration of XS containers

This commit is contained in:
Alessandro Ranellucci
2013-07-16 17:13:01 +02:00
parent 9b582a11ff
commit 9458c7db97
34 changed files with 279 additions and 152 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ Polygon::split_at_index(int index)
for (int i = index; i < this->points.size(); i++) {
poly->points.push_back( this->points[i] );
}
for (int i = 0; i < index; i++) {
for (int i = 0; i <= index; i++) {
poly->points.push_back( this->points[i] );
}
return poly;