Initial import

This commit is contained in:
Alessandro Ranellucci 2011-09-01 21:06:28 +02:00
commit 55a523e1fa
12 changed files with 891 additions and 0 deletions

19
slic3r.pl Normal file
View file

@ -0,0 +1,19 @@
#!/usr/bin/perl
use strict;
use warnings;
BEGIN {
use FindBin;
use lib "$FindBin::Bin/lib";
}
use Slic3r;
use XXX;
my $stl_parser = Slic3r::STL->new;
my $print = $stl_parser->parse_file("testcube20mm.stl");
#XXX $print;
__END__