mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-16 03:07:55 -06:00
Enabled the C++ fillers for all infills, not just the supports.
Made sure the C++ fillers are instantiated at the worker threads, where there are being released. Extended the FillRectilinear2 to calculate the contour / line intersection with exact arithmetics, improved robustness and added error handling and error reporting, if the contours to be filled are not correct.
This commit is contained in:
parent
f788f50b5a
commit
9e4edcd8ec
11 changed files with 314 additions and 172 deletions
|
@ -2,6 +2,7 @@
|
|||
#define slic3r_SupportMaterial_hpp_
|
||||
|
||||
#include "Flow.hpp"
|
||||
#include "PrintConfig.hpp"
|
||||
|
||||
namespace Slic3r {
|
||||
|
||||
|
@ -120,7 +121,7 @@ public:
|
|||
|
||||
// Height of the 1st layer is user configured as it is important for the print
|
||||
// to stick to he print bed.
|
||||
coordf_t first_layer_height() const { return m_object_config->first_layer_height.value; }
|
||||
coordf_t first_layer_height() const { return m_object_config->first_layer_height.value; }
|
||||
|
||||
// Is raft enabled?
|
||||
bool has_raft() const { return m_has_raft; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue