Skip to content

Commit

Permalink
final cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
TiaSinghania committed Feb 5, 2024
1 parent 507462b commit e46bca6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rb_ws/src/buggy/scripts/2d_sim/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def dynamics(self, state, v):
dstate (np.Array): time derivative of state from dynamics
"""
l = Simulator.WHEELBASE
x, y, theta, delta = state
theta, delta = state

return np.array([v * np.cos(theta),
v * np.sin(theta),
Expand Down
2 changes: 1 addition & 1 deletion rb_ws/src/buggy/scripts/2d_sim/velocity_ui.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#! /usr/bin/env python3
import sys
import threading
from controller_2d import Controller
import tkinter as tk
from controller_2d import Controller
import rospy

class VelocityUI:
Expand Down

0 comments on commit e46bca6

Please sign in to comment.