Instantiate the new C++ filler. It will be used for the supports first.

This commit is contained in:
bubnikv 2016-10-03 16:59:00 +02:00
parent d2635ab799
commit b7af7276c9
5 changed files with 313 additions and 1 deletions

View file

@ -8,6 +8,16 @@ has 'spacing' => (is => 'rw'); # in unscaled coordinates
has 'loop_clipping' => (is => 'rw', default => sub { 0 }); # in scaled coordinates
has 'bounding_box' => (is => 'ro', required => 0); # Slic3r::Geometry::BoundingBox object
sub set_spacing {
my ($self, $spacing) = @_;
$self->spacing($spacing);
}
sub set_angle {
my ($self, $angle) = @_;
$self->angle($angle);
}
sub adjust_solid_spacing {
my $self = shift;
my %params = @_;