mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-14 09:02:06 +00:00
Ensure bed shape is in correct orientation (#9350)
Fix #9345 This also fixes deltamaker's plate logo rendering:  And fix bed rendering issue for custom shaped bed without model:  Also fix rendering of exclusion area that are defined in clockwise: 
This commit is contained in:
@@ -8117,15 +8117,15 @@ Points get_bed_shape(const DynamicPrintConfig &config)
|
||||
return {};
|
||||
}
|
||||
|
||||
return to_points(bed_shape_opt->values);
|
||||
return to_points(make_counter_clockwise(bed_shape_opt->values));
|
||||
}
|
||||
|
||||
Points get_bed_shape(const PrintConfig &cfg)
|
||||
{
|
||||
return to_points(cfg.printable_area.values);
|
||||
return to_points(make_counter_clockwise(cfg.printable_area.values));
|
||||
}
|
||||
|
||||
Points get_bed_shape(const SLAPrinterConfig &cfg) { return to_points(cfg.printable_area.values); }
|
||||
Points get_bed_shape(const SLAPrinterConfig &cfg) { return to_points(make_counter_clockwise(cfg.printable_area.values)); }
|
||||
|
||||
Polygon get_bed_shape_with_excluded_area(const PrintConfig& cfg)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user