mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-24 15:13:58 -06:00
Merge new-support2
This commit is contained in:
parent
a2cc230bb5
commit
913f401280
13 changed files with 578 additions and 309 deletions
|
@ -58,7 +58,7 @@ sub export_svg {
|
|||
);
|
||||
|
||||
$group->(
|
||||
filter => sub { $_[0]->support_fills, $_[0]->support_contact_fills },
|
||||
filter => sub { $_[0]->isa('Slic3r::Layer::Support') ? ($_[0]->support_fills, $_[0]->support_interface_fills) : () },
|
||||
style => {
|
||||
'stroke-width' => 1,
|
||||
'stroke' => '#444444',
|
||||
|
@ -80,7 +80,7 @@ sub _plot {
|
|||
|
||||
foreach my $object (@{$self->print->objects}) {
|
||||
foreach my $copy (@{$object->copies}) {
|
||||
foreach my $layer (@{$object->layers}) {
|
||||
foreach my $layer (@{$object->layers}, @{$object->support_layers}) {
|
||||
# get all ExtrusionPath objects
|
||||
my @paths =
|
||||
map { $_->polyline->translate(@$copy); $_ }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue