From 71d4c86a6a20d630f182d8f0772202ca9c9bd186 Mon Sep 17 00:00:00 2001 From: Filip Sykala Date: Wed, 16 Feb 2022 15:16:30 +0100 Subject: [PATCH] Fix remove debug calculation of bounding box --- src/libslic3r/Emboss.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/libslic3r/Emboss.cpp b/src/libslic3r/Emboss.cpp index e4f3853366..5358b9c127 100644 --- a/src/libslic3r/Emboss.cpp +++ b/src/libslic3r/Emboss.cpp @@ -119,8 +119,6 @@ std::optional Private::get_glyph(stbtt_fontinfo &font_info, int u // fix for bad defined fonts glyph.shape = Slic3r::union_ex(glyph_polygons); - BoundingBox bb(glyph.shape.front().contour.points); - // inner cw - hole // outer ccw - contour return glyph;