mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-13 09:47:58 -06:00
Instantiate the new C++ filler. It will be used for the supports first.
This commit is contained in:
parent
d2635ab799
commit
b7af7276c9
5 changed files with 313 additions and 1 deletions
|
@ -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 = @_;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue