Skip to content

Commit

Permalink
change bounding box, angles were slipping
Browse files Browse the repository at this point in the history
  • Loading branch information
misko committed Dec 15, 2023
1 parent a3d6c01 commit 6281401
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spf/grbl/grbl_interactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
home_pB = np.array([0, 0])
home_bounding_box = [
[300, 400],
[home_pA[0] - 400, 400],
[home_pA[0] - 400, 2000],
[3100, 400],
[3100, 2850],
# [300,1500],
[900, 900],
]
Expand Down Expand Up @@ -397,7 +397,7 @@ def bounce(self, n_bounces, direction=None):
sys.exit(1)
elif line == "bounce":
# gm.bounce(20000)
gm.bounce(20)
gm.bounce(40)
elif line == "s":
p = gm.update_status()
print(p)
Expand Down

0 comments on commit 6281401

Please sign in to comment.