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

PRUS.hpp « Format « libslic3r « src - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8559a70d65f5faa90da66e5e6c183e60f99d6f6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#if defined(SLIC3R_PRUS) && ! defined(slic3r_Format_PRUS_hpp_)
#define slic3r_Format_PRUS_hpp_

namespace Slic3r {

class TriangleMesh;
class Model;

// Load a PrusaControl project file into a provided model.
extern bool load_prus(const char *path, Model *model);

}; // namespace Slic3r

#endif /* SLIC3R_PRUS && ! defined(slic3r_Format_PRUS_hpp_) */