mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 09:17:52 -06:00
Optimized and improved rectilinear fill.
This commit is contained in:
parent
3b81bf0e33
commit
f767ce816b
11 changed files with 62 additions and 6 deletions
|
@ -6,6 +6,7 @@
|
|||
#include "Fill3DHoneycomb.hpp"
|
||||
#include "FillPlanePath.hpp"
|
||||
#include "FillRectilinear.hpp"
|
||||
#include "FillRectilinear2.hpp"
|
||||
|
||||
namespace Slic3r {
|
||||
|
||||
|
@ -18,7 +19,8 @@ Fill* Fill::new_from_type(const std::string &type)
|
|||
if (type == "3dhoneycomb")
|
||||
return new Fill3DHoneycomb();
|
||||
if (type == "rectilinear")
|
||||
return new FillRectilinear();
|
||||
// return new FillRectilinear();
|
||||
return new FillRectilinear2();
|
||||
if (type == "line")
|
||||
return new FillLine();
|
||||
if (type == "grid")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue