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

Mold.h « src - github.com/Ultimaker/CuraEngine.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 744fb3dd3e5c23d630551897e754ffa6f94fabac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//Copyright (c) 2018 Ultimaker B.V.
//CuraEngine is released under the terms of the AGPLv3 or higher.

#ifndef MOLD_H
#define MOLD_H

namespace cura
{

class Slicer;

/*!
 * Class for transforming the outlines of a model into a mold into which the model can be cast.
 */
class Mold
{
public:
    /*!
     * \brief Convert the polygons (and open polylines) of each mold mesh in
     * \p storage in order to make a mold with a cutout in the shape of the
     * outlines.
     *
     * The open polylines of the model are also used to cut out the shape inside
     * the mold.
     *
     * First the new outlines of all meshes on a layer are computed and then all
     * mold meshes are cut out. This prevents molds reaching through each others
     * casting cutout space.
     *
     * \param slicer_list The container for the sliced polygons (and open
     * polylines) of all meshes.
     * \param layer_height The overall layer height used (used to compute an
     * offset from the mold angle).
     */
    static void process(std::vector<Slicer*>& slicer_list);
private:
};

}//namespace cura

#endif//MOLD_H