This commit is contained in:
Filip Sykala - NTB T15p 2022-07-13 13:43:53 +02:00
parent 4349e82d27
commit d4fc90cbb7
2 changed files with 1 additions and 6 deletions

View File

@ -2741,7 +2741,6 @@ priv::SurfacePatches priv::diff_models(VCutAOIs &cuts,
return patches; return patches;
} }
std::vector<bool> priv::select_patches( std::vector<bool> priv::select_patches(
const ProjectionDistances &best_distances, const ProjectionDistances &best_distances,
const SurfacePatches &patches, const SurfacePatches &patches,

View File

@ -2,12 +2,9 @@
#define slic3r_CutSurface_hpp_ #define slic3r_CutSurface_hpp_
#include <vector> #include <vector>
#include <optional>
#include <memory>
#include <admesh/stl.h> // indexed_triangle_set #include <admesh/stl.h> // indexed_triangle_set
#include "Polygon.hpp"
#include "ExPolygon.hpp" #include "ExPolygon.hpp"
#include "Emboss.hpp" #include "Emboss.hpp" // IProjection
namespace Slic3r{ namespace Slic3r{
@ -24,7 +21,6 @@ struct SurfaceCut : public indexed_triangle_set
// list of circulated open surface // list of circulated open surface
Contours contours; Contours contours;
}; };
using SurfaceCuts = std::vector<SurfaceCut>;
/// <summary> /// <summary>
/// Cut surface shape from models. /// Cut surface shape from models.