Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Movement/Move.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Movement/Move.cpp b/src/Movement/Move.cpp
index d94901a9..03d002d3 100644
--- a/src/Movement/Move.cpp
+++ b/src/Movement/Move.cpp
@@ -690,7 +690,7 @@ void Move::BedTransform(float xyzPoint[MaxAxes], const Tool *tool) const noexcep
{
if (usingMesh)
{
- const float toolHeight = xyzPoint[Z_AXIS] + Tool::GetOffset(tool, Z_AXIS);
+ const float toolHeight = xyzPoint[Z_AXIS] + Tool::GetOffset(tool, Z_AXIS); // the requested nozzle height above the bed
if (!useTaper || toolHeight < taperHeight)
{
const float zCorrection = ComputeHeightCorrection(xyzPoint, tool);