mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-19 19:33:47 +00:00
Bugfix: models located very far from XYZ origin were incorrectly placed on the print area
This commit is contained in:
@@ -297,7 +297,7 @@ sub duplicate {
|
|||||||
|
|
||||||
sub bounding_box {
|
sub bounding_box {
|
||||||
my $self = shift;
|
my $self = shift;
|
||||||
my @extents = (map [99999999999, -99999999999], X,Y,Z);
|
my @extents = (map [9999999999999999999999, -9999999999999999999999], X,Y,Z);
|
||||||
foreach my $facet (@{$self->facets}) {
|
foreach my $facet (@{$self->facets}) {
|
||||||
my ($normal, @vertices) = @$facet;
|
my ($normal, @vertices) = @$facet;
|
||||||
foreach my $vertex (@vertices) {
|
foreach my $vertex (@vertices) {
|
||||||
|
|||||||
Reference in New Issue
Block a user