Fixed bug in get_object_bounding_box #3023

This commit is contained in:
Andrej730
2023-04-19 11:27:36 +05:00
parent 1a7843a6b5
commit 54054c4aee
+1 -1
View File
@@ -176,7 +176,7 @@ class Blender:
"max_y": bound_box[6][1],
"min_z": bound_box[0][2],
"max_z": bound_box[6][2],
"center": (Vector(bound_box[6]) - Vector(bound_box[0])) / 2,
"center": (Vector(bound_box[6]) + Vector(bound_box[0])) / 2,
}
return bbox_dict