mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-06 13:34:05 -06:00
More incomplete work to make the plater work with XS data
This commit is contained in:
parent
8d171a297e
commit
1506907212
2 changed files with 5 additions and 2 deletions
|
@ -329,7 +329,10 @@ sub scale {
|
|||
|
||||
sub rotate {
|
||||
my $self = shift;
|
||||
$_->rotate(@_) for @{$self->expolygons};
|
||||
my ($angle, $center) = @_;
|
||||
|
||||
$center = Slic3r::Point::XS->new(@$center) if ref($center) ne 'Slic3r::Point::XS';
|
||||
$_->rotate($angle, $center) for @{$self->expolygons};
|
||||
$self;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue