2018-01-30 09:27:10 +01:00
|
|
|
#ifndef slic3r_Format_3mf_hpp_
|
|
|
|
#define slic3r_Format_3mf_hpp_
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
2019-02-01 16:12:00 +01:00
|
|
|
/* The format for saving the SLA points was changing in the past. This enum holds the latest version that is being currently used.
|
|
|
|
* Examples of the Slic3r_PE_sla_support_points.txt for historically used versions:
|
|
|
|
|
|
|
|
* version 0 : object_id=1|-12.055421 -2.658771 10.000000
|
|
|
|
object_id=2|-14.051745 -3.570338 5.000000
|
|
|
|
// no header and x,y,z positions of the points)
|
|
|
|
|
|
|
|
* version 1 : ThreeMF_support_points_version=1
|
|
|
|
object_id=1|-12.055421 -2.658771 10.000000 0.4 0.0
|
|
|
|
object_id=2|-14.051745 -3.570338 5.000000 0.6 1.0
|
|
|
|
// introduced header with version number; x,y,z,head_size,is_new_island)
|
|
|
|
*/
|
|
|
|
|
|
|
|
enum {
|
|
|
|
support_points_format_version = 1
|
|
|
|
};
|
2019-12-06 15:47:58 +01:00
|
|
|
|
|
|
|
enum {
|
2020-08-24 08:04:16 +02:00
|
|
|
drain_holes_format_version = 1
|
2019-12-06 15:47:58 +01:00
|
|
|
};
|
2019-02-01 16:12:00 +01:00
|
|
|
|
2018-01-30 09:27:10 +01:00
|
|
|
class Model;
|
2018-11-07 14:57:50 +01:00
|
|
|
class DynamicPrintConfig;
|
2019-10-23 13:31:24 +02:00
|
|
|
struct ThumbnailData;
|
2018-01-30 09:27:10 +01:00
|
|
|
|
2018-02-13 15:19:55 +01:00
|
|
|
// Load the content of a 3mf file into the given model and preset bundle.
|
2019-08-23 13:12:31 +02:00
|
|
|
extern bool load_3mf(const char* path, DynamicPrintConfig* config, Model* model, bool check_version);
|
2018-02-08 13:26:50 +01:00
|
|
|
|
2018-02-13 15:19:55 +01:00
|
|
|
// Save the given model and the config data contained in the given Print into a 3mf file.
|
2018-02-08 13:26:50 +01:00
|
|
|
// The model could be modified during the export process if meshes are not repaired or have no shared vertices
|
2021-03-08 09:36:13 +01:00
|
|
|
extern bool store_3mf(const char* path, Model* model, const DynamicPrintConfig* config, bool fullpath_sources, const ThumbnailData* thumbnail_data = nullptr, bool zip64 = true);
|
2018-02-13 15:19:55 +01:00
|
|
|
|
2020-08-19 15:24:55 +02:00
|
|
|
} // namespace Slic3r
|
2018-01-30 09:27:10 +01:00
|
|
|
|
|
|
|
#endif /* slic3r_Format_3mf_hpp_ */
|