Enhanced fix of #1229 - perl part
This commit is contained in:
parent
78e7bb0427
commit
cce5f3203b
1 changed files with 12 additions and 5 deletions
|
@ -407,17 +407,24 @@ sub on_btn_load {
|
|||
}
|
||||
|
||||
foreach my $object (@{$model->objects}) {
|
||||
$object->center_around_origin;
|
||||
my $delta_x = 0.0;
|
||||
my $delta_y = 0.0;
|
||||
my $delta_z = 0.0;
|
||||
if (($self->{model_object}->origin_translation->x != 0.0) || ($self->{model_object}->origin_translation->y != 0.0) || ($self->{model_object}->origin_translation->z != 0.0)) {
|
||||
$object->center_around_origin;
|
||||
$delta_x = $self->{model_object}->origin_translation->x - $object->origin_translation->x;
|
||||
$delta_y = $self->{model_object}->origin_translation->y - $object->origin_translation->y;
|
||||
$delta_z = $self->{model_object}->origin_translation->z - $object->origin_translation->z;
|
||||
}
|
||||
foreach my $volume (@{$object->volumes}) {
|
||||
my $new_volume = $self->{model_object}->add_volume($volume);
|
||||
$new_volume->set_modifier($is_modifier);
|
||||
$new_volume->set_name(basename($input_file));
|
||||
|
||||
# apply the same translation we applied to the object
|
||||
my $delta_x = $self->{model_object}->origin_translation->x - $object->origin_translation->x;
|
||||
my $delta_y = $self->{model_object}->origin_translation->y - $object->origin_translation->y;
|
||||
my $delta_z = $self->{model_object}->origin_translation->z - $object->origin_translation->z;
|
||||
$new_volume->mesh->translate($delta_x, $delta_y, $delta_z);
|
||||
if (($delta_x != 0.0) || ($delta_y != 0.0) || ($delta_z != 0.0)) {
|
||||
$new_volume->mesh->translate($delta_x, $delta_y, $delta_z);
|
||||
}
|
||||
|
||||
# set a default extruder value, since user can't add it manually
|
||||
$new_volume->config->set_ifndef('extruder', 0);
|
||||
|
|
Loading…
Reference in a new issue