mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-19 19:33:47 +00:00
[OPTIMIZATION] Update Fill3DHoneycomb.hpp - remove bridge flow (#10453)
Update Fill3DHoneycomb.hpp Bridge flow isn't necessary; the pattern is fully supported on the lines that matter for structural stability.
This commit is contained in:
committed by
GitHub
parent
f7e546e78c
commit
d6c6e0785e
@@ -15,8 +15,9 @@ public:
|
|||||||
Fill* clone() const override { return new Fill3DHoneycomb(*this); };
|
Fill* clone() const override { return new Fill3DHoneycomb(*this); };
|
||||||
~Fill3DHoneycomb() override {}
|
~Fill3DHoneycomb() override {}
|
||||||
|
|
||||||
// require bridge flow since most of this pattern hangs in air
|
// note: updated 3D Honeycomb doesn't need bridge flow because the
|
||||||
bool use_bridge_flow() const override { return true; }
|
// pattern is placed on top of previous layers
|
||||||
|
bool use_bridge_flow() const override { return false; }
|
||||||
bool is_self_crossing() override { return false; }
|
bool is_self_crossing() override { return false; }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|||||||
Reference in New Issue
Block a user