aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/mathutil.py
Commit message (Collapse)AuthorAgeFilesLines
* gcode: Change respond_info() to log by defaultKevin O'Connor2019-03-041-1/+1
| | | | | | | It makes sense to log most respond_info() content, so do that by default. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* mathutil: Wrap code to 80 columnsKevin O'Connor2019-02-271-1/+2
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* delta_calibrate: Perform coordinate descent in a background processKevin O'Connor2018-10-151-1/+28
| | | | | | | Run the coordinate descent in a background process so that the main thread does not block. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* mathutil: Log starting error in coordinate_descent()Kevin O'Connor2018-07-241-0/+1
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* mathutil: Move trilateration code from delta.py to mathutil.pyKevin O'Connor2018-06-221-1/+60
| | | | | | | Move the trilateration algorithm to mathutil.py. It may be useful outside of delta kinematics, and it complicates the delta code. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* mathutil: Move coordinate_descent() to new fileKevin O'Connor2018-03-041-0/+40
Add a new python file (mathutil.py) and move the coordinate_descent() code to it. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>