Skip to content

Commit

Permalink
Updating some files
Browse files Browse the repository at this point in the history
  • Loading branch information
tayalmanan28 authored Jun 19, 2022
1 parent 520cee5 commit 3736d6b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import numpy as np
from robots.biped.robot import Biped
from robots.biped.walking import PreviewControl
from robot import Biped
from walking import PreviewControl


def stand():
Expand Down Expand Up @@ -149,4 +149,6 @@ def walk():


if __name__ == '__main__':
jump(withTorsoTwist=True)
#walk()
#jump(withTorsoTwist=False)
squat()
2 changes: 1 addition & 1 deletion robot.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import pybullet_data
import numpy as np
import time
import robots.biped.transform as tf
import transform as tf
import scipy.linalg as la


Expand Down
2 changes: 1 addition & 1 deletion walking.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import numpy as np
import scipy.linalg as la
import control
import robots.biped.trajectory as trj
import trajectory as trj


class PreviewControl:
Expand Down

0 comments on commit 3736d6b

Please sign in to comment.