mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-06-04 11:14:17 +08:00
14 lines
202 B
Perl
14 lines
202 B
Perl
package Slic3r::Line;
|
|
use strict;
|
|
use warnings;
|
|
|
|
# a line is a two-points line
|
|
use parent 'Slic3r::Polyline';
|
|
|
|
sub grow {
|
|
my $self = shift;
|
|
return Slic3r::Polyline->new(@$self)->grow(@_);
|
|
}
|
|
|
|
1;
|