Forgot to call Geometry::chained_path

This commit is contained in:
Joseph Lenox 2018-07-24 23:36:11 -05:00
parent fcd3da17b3
commit e64f23e7bb

View File

@ -184,6 +184,7 @@ PrintGCode::output()
Points p;
for (const auto obj : this->objects )
p.emplace_back(obj->_shifted_copies.at(0));
Geometry::chained_path(p, obj_idx);
std::vector<size_t> z(100); // preallocate with 100 layers
std::map<coord_t, LayerPtrs> layers {};