Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SurfaceCollection.hpp « src « xs - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb8088c4774be0ff8b52989a3088746f408499c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef slic3r_SurfaceCollection_hpp_
#define slic3r_SurfaceCollection_hpp_

#include "Surface.hpp"
#include <vector>

namespace Slic3r {

class SurfaceCollection
{
    public:
    Surfaces surfaces;
    void simplify(double tolerance);
    void group(std::vector<SurfacesPtr> *retval);
};

}

#endif