Skip to content

Commit

Permalink
Merges develop.
Browse files Browse the repository at this point in the history
  • Loading branch information
maxspahn committed Nov 9, 2023
2 parents f20e7e0 + b6b4b35 commit b849205
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.

### Bug Fixes

- Removes space in git cliff command. Adds version number to python import.
- Optional link transformation is only added after looping through the joints.

### Ft[version]

- Relaxes python version to <4.0

<!-- generated by git-cliff -->
2 changes: 1 addition & 1 deletion forwardkinematics/urdfFks/casadiConversion/urdfparser.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def get_forward_kinematics(self, root, tip, q, link_transformation=np.eye(4)):
joint.axis, q[self._joint_map[joint.name]])
T_fk = ca.mtimes(T_fk, joint_frame)

T_fk = ca.mtimes(T_fk, link_transformation)
T_fk = ca.mtimes(T_fk, link_transformation)

return {
"T_fk": T_fk
Expand Down
14 changes: 10 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/maxspahn/forwardKinematics.git"


[tool.poetry.dependencies]
python = "^3.8,<3.10"
python = "^3.8,<4.0"
casadi = "^3.5.4,!=3.5.5.post1,!=3.5.5.post2"
numpy = "^1.15.3"
urdf_parser_py = ">=0.0.3"
Expand Down

0 comments on commit b849205

Please sign in to comment.