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 01:18:33 +0400
committerAlessandro Ranellucci <aar@cpan.org>2013-09-10 01:18:33 +0400
commit5e34a9cf21e3da73d4242a391a8d4e3bab59cae4 (patch)
tree1841f1815c661c130f4ff8bcf41f147974f956a6 /slic3r.pl
parent28b043e9a900120a7cf0db554c537d7b70a3d274 (diff)
Make Repair() idempotent and lowercase
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 8818c9151..6d485e52b 100755
--- a/slic3r.pl
+++ b/slic3r.pl
@@ -103,7 +103,7 @@ if (@ARGV) { # slicing from command line
$output_file =~ s/\.(stl)$/_fixed.obj/i;
my $tmesh = Slic3r::TriangleMesh::XS->new();
$tmesh->ReadSTLFile($file);
- $tmesh->Repair;
+ $tmesh->repair;
$tmesh->WriteOBJFile($output_file);
}
exit;