mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-12 17:27:54 -06:00
delta: Rename get_position() to calc_position()
Calculating the cartesian position from the stepper positions can be complex and cpu intensive, so rename it to calc_position() to be more descriptive. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
20b404ecf5
commit
0216201cb6
8 changed files with 12 additions and 12 deletions
|
@ -322,10 +322,10 @@ Useful steps:
|
|||
4. Implement the `set_position()` method in the python code. This also
|
||||
calculates the desired stepper positions given a cartesian
|
||||
coordinate.
|
||||
5. Implement the `get_position()` method in the new kinematics
|
||||
class. This method is the inverse of set_position(). It does not
|
||||
need to be efficient as it is typically only called during homing
|
||||
and probing operations.
|
||||
5. Implement the `calc_position()` method in the new kinematics class.
|
||||
This method is the inverse of set_position(). It does not need to
|
||||
be efficient as it is typically only called during homing and
|
||||
probing operations.
|
||||
6. Implement the `move()` method. This method generally invokes the
|
||||
iterative solver for each stepper.
|
||||
7. Other methods. The `home()`, `check_move()`, and other methods
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue