Init gym
This commit is contained in:
7
world/commons/Body_Part.py
Normal file
7
world/commons/Body_Part.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from math_ops.Matrix_4x4 import Matrix_4x4
|
||||
|
||||
class Body_Part():
|
||||
def __init__(self, mass) -> None:
|
||||
self.mass = float(mass)
|
||||
self.joints = []
|
||||
self.transform = Matrix_4x4() # body part to head transformation matrix
|
||||
Reference in New Issue
Block a user