Fix extrusion rate smoothing unnecessarily slowing down the entire line (#11249)

* Fix typo & code style

* Fix calculation of the min acc time

* Avoid slowing down the entire line if both end of a single line has been slowed down
This commit is contained in:
Noisyfox
2025-11-09 12:47:50 +08:00
committed by GitHub
parent 08bd21310c
commit 8f5a5a9b16
2 changed files with 139 additions and 16 deletions

View File

@@ -136,7 +136,6 @@ private:
assert(avg_correction <= 1.00000001f);
return avg_correction;
}
float time_corrected() const { return time() * volumetric_correction_avg(); }
GCodeLineType type;