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:
authorDavid Crocker <dcrocker@eschertech.com>2022-08-16 15:45:20 +0300
committerDavid Crocker <dcrocker@eschertech.com>2022-08-16 15:45:20 +0300
commitb26b85ce810f1635f927a3b01d15f7d4575b49c8 (patch)
treeed210f2fb7e7594bfdea0548fea9d4e639a9a527
parent5e89aa72250f47be39593c73964f5931713d0152 (diff)
Added a comment
-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);