Modified Original Prusa XL geometry - increased hose and enclosure height

This commit is contained in:
surynek 2025-02-05 16:54:45 +01:00 committed by Lukas Matena
parent db66335ee9
commit ba506413f8
2 changed files with 3 additions and 3 deletions

View File

@ -206,14 +206,14 @@
] ]
}, },
{ {
"height": "180", "height": "220",
"type": "box", "type": "box",
"polygons": [ "polygons": [
"-400,-400;400,-400;400,10;-400,10" "-400,-400;400,-400;400,10;-400,10"
] ]
}, },
{ {
"height": "220", "height": "280",
"type": "box", "type": "box",
"polygons": [ "polygons": [
"-400,-400;400,-400;400,400;-400,400" "-400,-400;400,-400;400,400;-400,400"

View File

@ -9067,7 +9067,7 @@ bool optimize_ConsequentialWeakPolygonNonoverlappingBinaryCentered(z3::solver
coord_t box_min_y = (half_y_max + half_y_min) / 2; coord_t box_min_y = (half_y_max + half_y_min) / 2;
coord_t box_max_y = solver_configuration.plate_bounding_box.max.y() - box_min_y; coord_t box_max_y = solver_configuration.plate_bounding_box.max.y() - box_min_y;
*/ */
#ifdef DEBUG #ifdef DEBUG
{ {
printf("BBX: %d, %d, %d, %d\n", box_min_x, box_max_x, box_min_y, box_max_y); printf("BBX: %d, %d, %d, %d\n", box_min_x, box_max_x, box_min_y, box_max_y);