diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-01-13 21:39:55 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-01-23 20:47:01 -0500 |
commit | 8ed0f7c5c37a3e2a3c38d19b19bbd6846453a6df (patch) | |
tree | 9363b4e1da37f5cbaf1f6b3a9a966c6c8a2de369 /klippy/kinematics/delta.py | |
parent | d1972b1e9ccc1331d2a2e5d3af108abf8a2858e2 (diff) | |
download | kutter-8ed0f7c5c37a3e2a3c38d19b19bbd6846453a6df.tar.gz kutter-8ed0f7c5c37a3e2a3c38d19b19bbd6846453a6df.tar.xz kutter-8ed0f7c5c37a3e2a3c38d19b19bbd6846453a6df.zip |
kinematics: Remove support for identifying Z steppers
The caller can now determine which steppers are connected to cartesian
Z movement via the new stepper.is_active_axis() method. It is
therefore no longer necessary for the kinematic code to identify these
steppers.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/kinematics/delta.py')
-rw-r--r-- | klippy/kinematics/delta.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/kinematics/delta.py b/klippy/kinematics/delta.py index f58902b2..057e9241 100644 --- a/klippy/kinematics/delta.py +++ b/klippy/kinematics/delta.py @@ -87,7 +87,7 @@ class DeltaKinematics: math.sqrt(self.max_xy2), math.sqrt(self.slow_xy2), math.sqrt(self.very_slow_xy2))) self.set_position([0., 0., 0.], ()) - def get_steppers(self, flags=""): + def get_steppers(self): return [s for rail in self.rails for s in rail.get_steppers()] def _actuator_to_cartesian(self, spos): sphere_coords = [(t[0], t[1], sp) for t, sp in zip(self.towers, spos)] |