mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-03 02:22:46 +00:00
Variable-width gap fill. Yay! #2960
This commit is contained in:
@@ -104,6 +104,10 @@ class ExtrusionLoop : public ExtrusionEntity
|
||||
ExtrusionLoop(ExtrusionLoopRole role = elrDefault) : role(role) {};
|
||||
ExtrusionLoop(const ExtrusionPaths &paths, ExtrusionLoopRole role = elrDefault)
|
||||
: paths(paths), role(role) {};
|
||||
ExtrusionLoop(const ExtrusionPath &path, ExtrusionLoopRole role = elrDefault)
|
||||
: role(role) {
|
||||
this->paths.push_back(path);
|
||||
};
|
||||
bool is_loop() const {
|
||||
return true;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user