WIP: Reworking of FillRectilinear2 to support monotonous infill

with ant colony optimization and 3-opt flips.
This commit is contained in:
bubnikv 2020-04-22 10:54:11 +02:00
parent 10110ed307
commit 03eb5ffcd5
3 changed files with 1445 additions and 569 deletions

View file

@ -25,6 +25,7 @@
// Saves around 32% RAM after slicing step, 6.7% after G-code export (tested on PrusaSlicer 2.2.0 final).
typedef int32_t coord_t;
#else
//FIXME At least FillRectilinear2 requires coord_t to be 32bit.
typedef int64_t coord_t;
#endif