You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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 |