mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 09:17:52 -06: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:
commit
a4f35e0291
15 changed files with 42 additions and 28 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue