Skip to content

Commit

Permalink
Update object_base_3d.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hanruihua committed Dec 7, 2024
1 parent e482f25 commit 1d1e377
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions irsim/world/object_base_3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@

class ObjectBase3D(ObjectBase):

def __init__(self, **kwargs):
super().__init__(**kwargs)
vel_shape = (6, 1)
state_shape = (6, 1)

def __init__(self, state=[0, 0, 0, 0, 0, 0], **kwargs):
super().__init__(state=state, **kwargs)



Expand Down

0 comments on commit 1d1e377

Please sign in to comment.