Fixed backend detection of out of print volume
This commit is contained in:
parent
57c769b63b
commit
f9caa6f7f1
1 changed files with 4 additions and 0 deletions
|
@ -1076,7 +1076,11 @@ unsigned int ModelObject::check_instances_print_volume_state(const BoundingBoxf3
|
||||||
unsigned int inside_outside = 0;
|
unsigned int inside_outside = 0;
|
||||||
for (const ModelVolume *vol : this->volumes)
|
for (const ModelVolume *vol : this->volumes)
|
||||||
if (vol->is_model_part()) {
|
if (vol->is_model_part()) {
|
||||||
|
#if ENABLE_MODELVOLUME_TRANSFORM
|
||||||
|
BoundingBoxf3 bb = vol->get_convex_hull().transformed_bounding_box(model_instance->get_matrix() * vol->get_matrix());
|
||||||
|
#else
|
||||||
BoundingBoxf3 bb = vol->get_convex_hull().transformed_bounding_box(model_instance->get_matrix());
|
BoundingBoxf3 bb = vol->get_convex_hull().transformed_bounding_box(model_instance->get_matrix());
|
||||||
|
#endif // ENABLE_MODELVOLUME_TRANSFORM
|
||||||
if (print_volume.contains(bb))
|
if (print_volume.contains(bb))
|
||||||
inside_outside |= INSIDE;
|
inside_outside |= INSIDE;
|
||||||
else if (print_volume.intersects(bb))
|
else if (print_volume.intersects(bb))
|
||||||
|
|
Loading…
Reference in a new issue