ENH: some fix of previous commit

fix to I0c853de6b1938c7e2addbaab5a45b35daf5a32fa

Change-Id: I307f99b301709fd00090dc234c054dacfda2e76a
This commit is contained in:
zhimin.zeng 2024-12-12 18:25:30 +08:00 committed by lane.wei
parent 71987627ef
commit d56bf872cf
1 changed files with 2 additions and 1 deletions

View File

@ -68,7 +68,8 @@ void ExtrusionPath::polygons_covered_by_spacing(Polygons &out, const float scale
bool ExtrusionPath::can_merge(const ExtrusionPath& other)
{
return curve_degree==other.curve_degree &&
return overhang_degree == other.overhang_degree &&
curve_degree==other.curve_degree &&
mm3_per_mm == other.mm3_per_mm &&
width == other.width &&
height == other.height &&