mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 16:57:53 -06:00
Added parameter "support_buildplate_only" for SLA supports.
This commit is contained in:
parent
a35b1a1850
commit
c3e1be7531
7 changed files with 30 additions and 0 deletions
|
@ -1898,6 +1898,17 @@ bool SLASupportTree::generate(const PointSet &points,
|
|||
}
|
||||
};
|
||||
|
||||
if(cfg.ground_facing_only) { // Delete the non-gnd steps if necessary
|
||||
program[ROUTING_NONGROUND] = []() {
|
||||
BOOST_LOG_TRIVIAL(info) << "Skipping non-ground facing supports as "
|
||||
"requested.";
|
||||
};
|
||||
program[HEADLESS] = [](){
|
||||
BOOST_LOG_TRIVIAL(info) << "Skipping headless stick generation as "
|
||||
"requested";
|
||||
};
|
||||
}
|
||||
|
||||
Steps pc = BEGIN, pc_prev = BEGIN;
|
||||
|
||||
// Let's define a simple automaton that will run our program.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue