Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2017-10-27 19:52:35 +0300
committerbubnikv <bubnikv@gmail.com>2017-10-27 19:52:35 +0300
commit2455aee97cf595563ef7d61c8abe39ad31e5514e (patch)
tree4a15aebe5603e6fb6b6a63c9743de924daaae96b /t/shells.t
parent3bc79e80d5d0618633d1ce556f561774acc59588 (diff)
Further reduction of Perl Config.pm methods.
Diffstat (limited to 't/shells.t')
-rw-r--r--t/shells.t14
1 files changed, 7 insertions, 7 deletions
diff --git a/t/shells.t b/t/shells.t
index 03bc5665c..eac95aa32 100644
--- a/t/shells.t
+++ b/t/shells.t
@@ -14,7 +14,7 @@ use Slic3r::Geometry qw(epsilon);
use Slic3r::Test;
{
- my $config = Slic3r::Config->new_from_defaults;
+ my $config = Slic3r::Config::new_from_defaults;
$config->set('skirts', 0);
$config->set('perimeters', 0);
$config->set('solid_infill_speed', 99);
@@ -82,7 +82,7 @@ use Slic3r::Test;
# issue #1161
{
- my $config = Slic3r::Config->new_from_defaults;
+ my $config = Slic3r::Config::new_from_defaults;
$config->set('layer_height', 0.3);
$config->set('first_layer_height', '100%');
$config->set('bottom_solid_layers', 0);
@@ -106,7 +106,7 @@ use Slic3r::Test;
}
{
- my $config = Slic3r::Config->new_from_defaults;
+ my $config = Slic3r::Config::new_from_defaults;
# we need to check against one perimeter because this test is calibrated
# (shape, extrusion_width) so that perimeters cover the bottom surfaces of
# their lower layer - the test checks that shells are not generated on the
@@ -137,7 +137,7 @@ use Slic3r::Test;
}
{
- my $config = Slic3r::Config->new_from_defaults;
+ my $config = Slic3r::Config::new_from_defaults;
$config->set('perimeters', 3);
$config->set('cooling', [ 0 ]); # prevent speed alteration
$config->set('first_layer_speed', '100%'); # prevent speed alteration
@@ -161,7 +161,7 @@ use Slic3r::Test;
}
{
- my $config = Slic3r::Config->new_from_defaults;
+ my $config = Slic3r::Config::new_from_defaults;
$config->set('perimeters', 1);
$config->set('fill_density', 0);
$config->set('top_solid_layers', 0);
@@ -221,7 +221,7 @@ use Slic3r::Test;
}
{
- my $config = Slic3r::Config->new_from_defaults;
+ my $config = Slic3r::Config::new_from_defaults;
$config->set('spiral_vase', 1);
$config->set('perimeters', 1);
$config->set('fill_density', 0);
@@ -292,7 +292,7 @@ use Slic3r::Test;
}
{
- my $config = Slic3r::Config->new_from_defaults;
+ my $config = Slic3r::Config::new_from_defaults;
$config->set('perimeters', 1);
$config->set('fill_density', 0);
$config->set('top_solid_layers', 0);