From 9b4e66f40d20bf8c89ad2d66e4ace8dbb234a091 Mon Sep 17 00:00:00 2001 From: enricoturri1966 Date: Fri, 3 Feb 2023 12:06:01 +0100 Subject: [PATCH] Removed unneded line of code from Selection::get_bounding_box_in_reference_system() --- src/slic3r/GUI/Selection.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/slic3r/GUI/Selection.cpp b/src/slic3r/GUI/Selection.cpp index c3b0b57251..4f80ba6a99 100644 --- a/src/slic3r/GUI/Selection.cpp +++ b/src/slic3r/GUI/Selection.cpp @@ -884,8 +884,6 @@ std::pair Selection::get_bounding_box_in_reference_s }; auto calc_box_size = [point_to_Vec4d, Vec4d_to_Vec3d, apply_transform](const BoundingBoxf3& box, const Transform3d& trafo) { - Geometry::Transformation transformation(trafo); - // box aligned to current reference system std::vector homo_vertices = { point_to_Vec4d({ box.min.x(), box.min.y(), box.min.z() }),