ENH: some fix of previous commit
fix to I0c853de6b1938c7e2addbaab5a45b35daf5a32fa Change-Id: I307f99b301709fd00090dc234c054dacfda2e76a
This commit is contained in:
parent
71987627ef
commit
d56bf872cf
|
@ -68,7 +68,8 @@ void ExtrusionPath::polygons_covered_by_spacing(Polygons &out, const float scale
|
||||||
|
|
||||||
bool ExtrusionPath::can_merge(const ExtrusionPath& other)
|
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 &&
|
mm3_per_mm == other.mm3_per_mm &&
|
||||||
width == other.width &&
|
width == other.width &&
|
||||||
height == other.height &&
|
height == other.height &&
|
||||||
|
|
Loading…
Reference in New Issue