aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/graph_shaper.py
diff options
context:
space:
mode:
authorThijs Triemstra <info@collab.nl>2025-07-25 18:31:19 +0200
committerGitHub <noreply@github.com>2025-07-25 12:31:19 -0400
commit60879fd298fe3b4f3dda63561e6a1c9bdc5ee9af (patch)
tree74cd5c84ca4758c2de14f0fd1686b75a74bfa142 /scripts/graph_shaper.py
parentef4c76fe9494d0e011d6da5610fa868d2e702fff (diff)
downloadkutter-60879fd298fe3b4f3dda63561e6a1c9bdc5ee9af.tar.gz
kutter-60879fd298fe3b4f3dda63561e6a1c9bdc5ee9af.tar.xz
kutter-60879fd298fe3b4f3dda63561e6a1c9bdc5ee9af.zip
klippy: fix typos in python code (#6989)
Signed-off-by: Thijs Triemstra <info@collab.nl>
Diffstat (limited to 'scripts/graph_shaper.py')
-rwxr-xr-xscripts/graph_shaper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/graph_shaper.py b/scripts/graph_shaper.py
index 0ea19458..b9a6627c 100755
--- a/scripts/graph_shaper.py
+++ b/scripts/graph_shaper.py
@@ -20,7 +20,7 @@ SHAPER_DAMPING_RATIO=0.1
STEP_SIMULATION_RESONANCE_FREQ=60.
STEP_SIMULATION_DAMPING_RATIO=0.15
-# If set, defines which range of frequencies to plot shaper frequency responce
+# If set, defines which range of frequencies to plot shaper frequency response
PLOT_FREQ_RANGE = [] # If empty, will be automatically determined
#PLOT_FREQ_RANGE = [10., 100.]
@@ -159,7 +159,7 @@ def find_shaper_plot_range(shaper, vib_tol):
return (left, right)
def gen_shaper_response(shaper):
- # Calculate shaper vibration responce on a range of requencies
+ # Calculate shaper vibration response on a range of frequencies
response = []
freqs = []
freq, freq_end = find_shaper_plot_range(shaper, vib_tol=0.25)