2011-09-01 19:06:28 +00:00
|
|
|
package Slic3r::Line;
|
2011-10-12 14:27:40 +00:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
2011-09-01 19:06:28 +00:00
|
|
|
|
2013-04-27 13:02:13 +00:00
|
|
|
# a line is a two-points line
|
|
|
|
use parent 'Slic3r::Polyline';
|
|
|
|
|
2013-08-08 00:10:34 +00:00
|
|
|
sub grow {
|
|
|
|
my $self = shift;
|
2013-11-20 10:35:58 +00:00
|
|
|
return Slic3r::Polyline->new(@$self)->grow(@_);
|
2013-08-08 00:10:34 +00:00
|
|
|
}
|
|
|
|
|
2011-09-01 19:06:28 +00:00
|
|
|
1;
|