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

16_flow.t « t « xs - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5040d28c306ff0a220c425f0f9f61f3bd01e6acb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/perl

use strict;
use warnings;

use Slic3r::XS;
use Test::More tests => 2;

{
    my $flow = Slic3r::Flow->new_from_width(
        role => Slic3r::Flow::FLOW_ROLE_PERIMETER,
        width               => '1',
        nozzle_diameter     => 0.5,
        layer_height        => 0.3, 
        bridge_flow_ratio   => 1,
    );
    isa_ok $flow, 'Slic3r::Flow', 'new_from_width';
}

{
    my $flow = Slic3r::Flow->new(
        width               => 1,
        height              => 0.4,
        nozzle_diameter     => 0.5,
    );
    isa_ok $flow, 'Slic3r::Flow', 'new';
}

__END__