mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-23 16:51:21 -06:00

This is especially important for the extremely slow AMF parser. Also there is a new file handler for the Prusa Control 'PRUS' format.
14 lines
310 B
C++
14 lines
310 B
C++
#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_ */
|