robot-keyframe-kit 0.3.1__tar.gz → 0.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {robot_keyframe_kit-0.3.1/src/robot_keyframe_kit.egg-info → robot_keyframe_kit-0.3.2}/PKG-INFO +1 -1
- {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/pyproject.toml +1 -1
- {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit/math_utils.py +1 -1
- {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2/src/robot_keyframe_kit.egg-info}/PKG-INFO +1 -1
- {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/LICENSE +0 -0
- {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/MANIFEST.in +0 -0
- {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/README.md +0 -0
- {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/setup.cfg +0 -0
- {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit/__init__.py +0 -0
- {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit/config.py +0 -0
- {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit/editor.py +0 -0
- {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit/keyframe.py +0 -0
- {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit/sim_worker.py +0 -0
- {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit.egg-info/SOURCES.txt +0 -0
- {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit.egg-info/dependency_links.txt +0 -0
- {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit.egg-info/entry_points.txt +0 -0
- {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit.egg-info/requires.txt +0 -0
- {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit.egg-info/top_level.txt +0 -0
{robot_keyframe_kit-0.3.1/src/robot_keyframe_kit.egg-info → robot_keyframe_kit-0.3.2}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robot-keyframe-kit
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: A generalizable Viser-based keyframe editor for any MuJoCo robot
|
|
5
5
|
Author-email: Stanford TML <yuming29@stanford.edu>
|
|
6
6
|
Maintainer-email: Stanford TML <yuming29@stanford.edu>
|
|
@@ -148,7 +148,7 @@ def solve_equality_constraints(
|
|
|
148
148
|
if np.max(np.abs(pos_err)) < tol:
|
|
149
149
|
break
|
|
150
150
|
|
|
151
|
-
J = data.efc_J.reshape(
|
|
151
|
+
J = data.efc_J.reshape(-1, model.nv)[:nefc][eq_mask].copy()
|
|
152
152
|
|
|
153
153
|
# Zero out locked columns so the solver cannot move those DOFs.
|
|
154
154
|
if locked_dofs:
|
{robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2/src/robot_keyframe_kit.egg-info}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robot-keyframe-kit
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: A generalizable Viser-based keyframe editor for any MuJoCo robot
|
|
5
5
|
Author-email: Stanford TML <yuming29@stanford.edu>
|
|
6
6
|
Maintainer-email: Stanford TML <yuming29@stanford.edu>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit.egg-info/requires.txt
RENAMED
|
File without changes
|
{robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit.egg-info/top_level.txt
RENAMED
|
File without changes
|