Expand1D Arc - No holes

This commit is contained in:
Brandon502
2024-10-16 12:12:28 -04:00
parent 33318dab25
commit c1e75ac127

View File

@@ -870,7 +870,8 @@ uint16_t Segment::virtualLength() const {
break;
case M12_pCorner:
case M12_pArc:
vLen = max(vW,vH); // get the longest dimension
vLen = sqrt16(vW * vW + vH * vH);
if (vW != vH) vLen++; // round up
break;
case M12_jMap: //WLEDMM jMap
if (jMap)