mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-20 07:11:12 -06:00
Bugfix: make_perimeters() was not truly idempotent because prepare_infill() split ->slices into typed surfaces
This commit is contained in:
parent
28f9278963
commit
d9f5fdae72
6 changed files with 38 additions and 3 deletions
|
@ -61,7 +61,12 @@ _constant()
|
|||
%code%{ RETVAL = &THIS->size; %};
|
||||
Ref<Point> _copies_shift()
|
||||
%code%{ RETVAL = &THIS->_copies_shift; %};
|
||||
|
||||
|
||||
bool typed_slices()
|
||||
%code%{ RETVAL = THIS->typed_slices; %};
|
||||
void set_typed_slices(bool value)
|
||||
%code%{ THIS->typed_slices = value; %};
|
||||
|
||||
Points _shifted_copies()
|
||||
%code%{ RETVAL = THIS->_shifted_copies; %};
|
||||
void set_shifted_copies(Points value)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue