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:
authorAlessandro Ranellucci <aar@cpan.org>2013-09-10 02:40:46 +0400
committerAlessandro Ranellucci <aar@cpan.org>2013-09-10 02:40:46 +0400
commit566d38a47222d88868fd3f6b14447f780eec9ab1 (patch)
tree5512593d4f4e4123d635561d875a4d9029fce419 /slic3r.pl
parent311eda7d420936935663a1f80832ee417fb58268 (diff)
Replace TriangleMesh with the XS port
Diffstat (limited to 'slic3r.pl')
-rwxr-xr-xslic3r.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/slic3r.pl b/slic3r.pl
index 6d485e52b..5d7980169 100755
--- a/slic3r.pl
+++ b/slic3r.pl
@@ -101,7 +101,7 @@ if (@ARGV) { # slicing from command line
my $output_file = $file;
$output_file =~ s/\.(stl)$/_fixed.obj/i;
- my $tmesh = Slic3r::TriangleMesh::XS->new();
+ my $tmesh = Slic3r::TriangleMesh->new;
$tmesh->ReadSTLFile($file);
$tmesh->repair;
$tmesh->WriteOBJFile($output_file);