FIX: Fix missing offset() helper declaration

/run/build/BambuStudio/src/libslic3r/GCode/WipeTower.cpp:3327:26: error: ‘offset’ was not declared in this scope; did you mean ‘off_t’?
 3327 |             outer_wall = offset(outer_wall, scaled(spacing)).front();
      |                          ^~~~~~
      |                          off_t
This commit is contained in:
Bastien Nocera 2025-03-25 17:09:49 +01:00 committed by Lane.Wei
parent ea2c021427
commit c77afa7096
1 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@
#include "GCodeProcessor.hpp"
#include "BoundingBox.hpp"
#include "ClipperUtils.hpp"
#include "LocalesUtils.hpp"
#include "Triangulation.hpp"