This commit is contained in:
sunsets
2024-01-09 09:19:16 +08:00
parent bfff15eb8e
commit cad0b137b4
31 changed files with 52 additions and 53 deletions

View File

@@ -190,7 +190,7 @@ physical_printer_settings_id =
post_process =
print_settings_id = 0.20mm QUALITY @MK3
printer_model = MK3
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_PRUSA3D\nPRINTER_MODEL_MK3\n
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_QIDI3D\nPRINTER_MODEL_MK3\n
printer_settings_id = Original QIDI i3 MK3
printer_technology = FFF
printer_variant = 0.4

View File

@@ -1,6 +1,6 @@
#include "prusaparts.hpp"
const TestData PRUSA_PART_POLYGONS =
const TestData QIDI_PART_POLYGONS =
{
{
{-5000000, 8954050},
@@ -594,7 +594,7 @@ const TestData PRUSA_PART_POLYGONS =
},
};
const TestData PRUSA_STEGOSAUR_POLYGONS =
const TestData QIDI_STEGOSAUR_POLYGONS =
{
{
{113210205, 107034095},
@@ -2540,7 +2540,7 @@ struct MyPoly {
operator ExPolygon () { return poly; }
};
const TestDataEx PRUSA_PART_POLYGONS_EX = {
const TestDataEx QIDI_PART_POLYGONS_EX = {
ExPolygons{
// "x-carriage.stl":
MyPoly{{

View File

@@ -7,8 +7,8 @@
using TestData = std::vector<Slic3r::Polygon>;
using TestDataEx = std::vector<Slic3r::ExPolygons>;
extern const TestData PRUSA_PART_POLYGONS;
extern const TestData PRUSA_STEGOSAUR_POLYGONS;
extern const TestDataEx PRUSA_PART_POLYGONS_EX;
extern const TestData QIDI_PART_POLYGONS;
extern const TestData QIDI_STEGOSAUR_POLYGONS;
extern const TestDataEx QIDI_PART_POLYGONS_EX;
#endif // PRUSAPARTS_H