mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-06-22 00:39:50 +08:00
19 lines
288 B
Perl
19 lines
288 B
Perl
# Extends the C++ class Slic3r::Layer.
|
|
|
|
package Slic3r::Layer;
|
|
use strict;
|
|
use warnings;
|
|
|
|
# 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;
|
|
}
|
|
|
|
1;
|