PrusaSlicer-NonPlainar/lib/Slic3r/Layer.pm

19 lines
288 B
Perl
Raw Normal View History

2016-09-13 11:24:55 +02:00
# Extends the C++ class Slic3r::Layer.
2011-09-01 21:06:28 +02:00
package Slic3r::Layer;
2014-06-12 09:23:10 +02:00
use strict;
use warnings;
2011-09-01 21:06:28 +02: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 21:06:28 +02:00
1;