61 lines
2.3 KiB
Perl
61 lines
2.3 KiB
Perl
use Test::More tests => 6;
|
|
use strict;
|
|
use warnings;
|
|
|
|
BEGIN {
|
|
use FindBin;
|
|
use lib "$FindBin::Bin/../lib";
|
|
use local::lib "$FindBin::Bin/../local-lib";
|
|
}
|
|
|
|
use List::Util qw(first);
|
|
use Slic3r;
|
|
use Slic3r::Geometry qw(unscale X Y);
|
|
use Slic3r::Test;
|
|
|
|
{
|
|
my $config = Slic3r::Config::new_from_defaults;
|
|
my $print_center = [100,100];
|
|
my $print = Slic3r::Test::init_print('20mm_cube', config => $config, print_center => $print_center);
|
|
my @extrusion_points = ();
|
|
Slic3r::GCode::Reader->new->parse(Slic3r::Test::gcode($print), sub {
|
|
my ($self, $cmd, $args, $info) = @_;
|
|
|
|
if ($cmd eq 'G1' && $info->{extruding} && $info->{dist_XY} > 0) {
|
|
push @extrusion_points, my $point = Slic3r::Point->new_scale($args->{X}, $args->{Y});
|
|
}
|
|
});
|
|
my $bb = Slic3r::Geometry::BoundingBox->new_from_points(\@extrusion_points);
|
|
my $center = $bb->center;
|
|
ok abs(unscale($center->[X]) - $print_center->[X]) < 0.005, 'print is centered around print_center (X)';
|
|
ok abs(unscale($center->[Y]) - $print_center->[Y]) < 0.005, 'print is centered around print_center (Y)';
|
|
}
|
|
|
|
{
|
|
# this represents the aggregate config from presets
|
|
my $config = Slic3r::Config::new_from_defaults;
|
|
|
|
# user adds one object to the plater
|
|
my $print = Slic3r::Test::init_print(my $model = Slic3r::Test::model('20mm_cube'), config => $config);
|
|
|
|
# user sets a per-region option
|
|
$print->print->objects->[0]->model_object->config->set('fill_density', 100);
|
|
$print->print->reload_object(0);
|
|
is $print->print->regions->[0]->config->fill_density, 100, 'region config inherits model object config';
|
|
|
|
# user exports G-code, thus the default config is reapplied
|
|
$print->print->apply_config($config);
|
|
|
|
is $print->print->regions->[0]->config->fill_density, 100, 'apply_config() does not override per-object settings';
|
|
|
|
# user assigns object extruders
|
|
$print->print->objects->[0]->model_object->config->set('extruder', 3);
|
|
$print->print->objects->[0]->model_object->config->set('perimeter_extruder', 2);
|
|
$print->print->reload_object(0);
|
|
|
|
is $print->print->regions->[0]->config->infill_extruder, 3, 'extruder setting is correctly expanded';
|
|
is $print->print->regions->[0]->config->perimeter_extruder, 2, 'extruder setting does not override explicitely specified extruders';
|
|
}
|
|
|
|
__END__
|