Skip to content

Commit

Permalink
Fix typo in variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
Giulero committed Jan 26, 2024
1 parent 34256c7 commit be8934b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/adam/parametric/pytorch/computations_parametric.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def forward_kinematics(
Args:
frame (str): The frame to which the fk will be computed
base_transform (torch.tensor): The homogenous transform from base to world frame
joint_position (torch.tensor): The joints position
joint_positions (torch.tensor): The joints position
length_multiplier (torch.tensor): The length multiplier of the parametrized links
densities (torch.tensor): The densities of the parametrized links
Expand All @@ -153,7 +153,7 @@ def forward_kinematics(
self.rbdalgos.forward_kinematics(
frame,
base_transform,
joint_postitions,
joint_positions,
)
).array

Expand Down

0 comments on commit be8934b

Please sign in to comment.