Skip to content

Commit 02ce7ef

Browse files
committed
Add gifs to changelog.
1 parent d1d08c6 commit 02ce7ef

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,17 @@ All notable changes to this project will be documented in this file.
77
### Added
88

99
- Added `EqualityConstraintTask`, which is particularly useful for closed-chain mechanisms like 4-bar linkages or parallel robots. See [biped_cassie.py](examples/biped_cassie.py) for an implementation example. Contribution from @simeon-ned.
10+
11+
| Before | After |
12+
|--------|-------|
13+
| ![before](https://github.com/kevinzakka/mink/blob/assets/equality_before.gif?raw=true) | ![after](https://github.com/kevinzakka/mink/blob/assets/equality_after.gif?raw=true) |
14+
1015
- `Configuration.check_limits` now logs joint limit violations to `debug` rather than `warn` when `safety_break=False`.
1116
- Added `utils.get_subtree_body_ids` to get all bodies belonging to the subtree starting at a given body.
1217
- Example usage of this function can be found in the [ALOHA example script](examples/arm_aloha.py) where it is used to selectively apply gravity compensation torques to the left and right arm bodies.
1318
- Add G1 and Apollo humanoid example with a tabletop manipulation focus.
1419

15-
![Banner for mink](https://github.com/kevinzakka/mink/blob/assets/g1_teleop.gif?raw=true)
20+
![g1 teleop](https://github.com/kevinzakka/mink/blob/assets/g1_teleop.gif?raw=true)
1621

1722
### Changed
1823

mink/tasks/equality_constraint_task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def _get_dense_constraint_jacobian(
3838
data.efc_J_colind,
3939
)
4040
return efc_J
41-
return data.efc_J.reshape((data.nefc, model.nv))
41+
return data.efc_J.reshape((data.nefc, model.nv)).copy()
4242

4343

4444
class EqualityConstraintTask(Task):

0 commit comments

Comments
 (0)