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

OBJ.hpp « Format « libslic3r « src - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9a8790bfffed1f768b722d4adf8ea07e5b36ecf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef slic3r_Format_OBJ_hpp_
#define slic3r_Format_OBJ_hpp_

namespace Slic3r {

class TriangleMesh;
class Model;

// Load an OBJ file into a provided model.
extern bool load_obj(const char *path, Model *model, const char *object_name = nullptr);

}; // namespace Slic3r

#endif /* slic3r_Format_OBJ_hpp_ */