Skip to content

Commit

Permalink
refactor: Refactor Limb class for better code organization
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasfremming committed Sep 3, 2024
1 parent 2c60894 commit 8df10fc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ def __init__(self, env):
self.env = env


class Limb():
length: float

def __init__(self):
pass


class Joint():
Expand All @@ -30,10 +35,5 @@ def __init__(self):
pass


class Limb():
length: float

def __init__(self):
pass


0 comments on commit 8df10fc

Please sign in to comment.