mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-03 02:22:46 +00:00
Restore correct ordering of concentric infill loops, preventing them from being reordered during G-code generation
This commit is contained in:
@@ -38,6 +38,9 @@ class ExtrusionEntity
|
||||
virtual bool is_loop() const {
|
||||
return false;
|
||||
};
|
||||
virtual bool can_reverse() const {
|
||||
return true;
|
||||
};
|
||||
virtual ExtrusionEntity* clone() const = 0;
|
||||
virtual ~ExtrusionEntity() {};
|
||||
virtual void reverse() = 0;
|
||||
@@ -92,6 +95,9 @@ class ExtrusionLoop : public ExtrusionEntity
|
||||
bool is_loop() const {
|
||||
return true;
|
||||
};
|
||||
bool can_reverse() const {
|
||||
return false;
|
||||
};
|
||||
ExtrusionLoop* clone() const;
|
||||
bool make_clockwise();
|
||||
bool make_counter_clockwise();
|
||||
|
||||
Reference in New Issue
Block a user