PrusaSlicer-NonPlainar/lib/Slic3r/Layer.pm

19 lines
288 B
Perl
Raw Normal View History

2016-09-13 09:24:55 +00:00
# Extends the C++ class Slic3r::Layer.
2011-09-01 19:06:28 +00:00
package Slic3r::Layer;
2014-06-12 07:23:10 +00:00
use strict;
use warnings;
2011-09-01 19:06:28 +00:00
# the following two were previously generated by Moo
sub print {
my $self = shift;
return $self->object->print;
}
sub config {
my $self = shift;
return $self->object->config;
}
2011-09-01 19:06:28 +00:00
1;