placo 0.3.7__0-cp310-cp310-manylinux_2_35_x86_64.whl → 0.3.8__0-cp310-cp310-manylinux_2_35_x86_64.whl
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.
Potentially problematic release.
This version of placo might be problematic. Click here for more details.
- cmeel.prefix/lib/liblibplaco.so +0 -0
- cmeel.prefix/lib/python3.10/site-packages/placo.pyi +56 -15
- cmeel.prefix/lib/python3.10/site-packages/placo.so +0 -0
- cmeel.prefix/lib/python3.10/site-packages/placo_utils/__pycache__/visualization.cpython-310.pyc +0 -0
- {placo-0.3.7.dist-info → placo-0.3.8.dist-info}/METADATA +1 -1
- {placo-0.3.7.dist-info → placo-0.3.8.dist-info}/RECORD +9 -9
- {placo-0.3.7.dist-info → placo-0.3.8.dist-info}/WHEEL +0 -0
- {placo-0.3.7.dist-info → placo-0.3.8.dist-info}/license/LICENSE +0 -0
- {placo-0.3.7.dist-info → placo-0.3.8.dist-info}/top_level.txt +0 -0
cmeel.prefix/lib/liblibplaco.so
CHANGED
|
Binary file
|
|
@@ -3615,6 +3615,19 @@ class HumanoidRobot:
|
|
|
3615
3615
|
:return: the joint current (inner state) value (e.g rad for revolute or meters for prismatic)"""
|
|
3616
3616
|
...
|
|
3617
3617
|
|
|
3618
|
+
def get_joint_acceleration(
|
|
3619
|
+
self: HumanoidRobot,
|
|
3620
|
+
name: str, # const std::string &
|
|
3621
|
+
|
|
3622
|
+
) -> float:
|
|
3623
|
+
"""Gets the joint acceleration from state.qd.
|
|
3624
|
+
|
|
3625
|
+
|
|
3626
|
+
:param name: joint name
|
|
3627
|
+
|
|
3628
|
+
:return: joint acceleration"""
|
|
3629
|
+
...
|
|
3630
|
+
|
|
3618
3631
|
def get_joint_offset(
|
|
3619
3632
|
self: HumanoidRobot,
|
|
3620
3633
|
name: str, # const std::string &
|
|
@@ -3797,6 +3810,20 @@ class HumanoidRobot:
|
|
|
3797
3810
|
:param value: joint value (e.g rad for revolute or meters for prismatic)"""
|
|
3798
3811
|
...
|
|
3799
3812
|
|
|
3813
|
+
def set_joint_acceleration(
|
|
3814
|
+
self: HumanoidRobot,
|
|
3815
|
+
name: str, # const std::string &
|
|
3816
|
+
value: float, # double
|
|
3817
|
+
|
|
3818
|
+
) -> None:
|
|
3819
|
+
"""Sets the joint acceleration in state.qd.
|
|
3820
|
+
|
|
3821
|
+
|
|
3822
|
+
:param name: joint name
|
|
3823
|
+
|
|
3824
|
+
:param value: joint acceleration"""
|
|
3825
|
+
...
|
|
3826
|
+
|
|
3800
3827
|
def set_joint_limits(
|
|
3801
3828
|
self: HumanoidRobot,
|
|
3802
3829
|
name: str, # const std::string &
|
|
@@ -3926,7 +3953,7 @@ class HumanoidRobot:
|
|
|
3926
3953
|
self: HumanoidRobot,
|
|
3927
3954
|
|
|
3928
3955
|
) -> None:
|
|
3929
|
-
"""Update
|
|
3956
|
+
"""Update internal computation for kinematics (frames, jacobian). This method should be called when the robot state has changed."""
|
|
3930
3957
|
...
|
|
3931
3958
|
|
|
3932
3959
|
def update_support_side(
|
|
@@ -6007,6 +6034,19 @@ class RobotWrapper:
|
|
|
6007
6034
|
:return: the joint current (inner state) value (e.g rad for revolute or meters for prismatic)"""
|
|
6008
6035
|
...
|
|
6009
6036
|
|
|
6037
|
+
def get_joint_acceleration(
|
|
6038
|
+
self: RobotWrapper,
|
|
6039
|
+
name: str, # const std::string &
|
|
6040
|
+
|
|
6041
|
+
) -> float:
|
|
6042
|
+
"""Gets the joint acceleration from state.qd.
|
|
6043
|
+
|
|
6044
|
+
|
|
6045
|
+
:param name: joint name
|
|
6046
|
+
|
|
6047
|
+
:return: joint acceleration"""
|
|
6048
|
+
...
|
|
6049
|
+
|
|
6010
6050
|
def get_joint_offset(
|
|
6011
6051
|
self: RobotWrapper,
|
|
6012
6052
|
name: str, # const std::string &
|
|
@@ -6176,6 +6216,20 @@ class RobotWrapper:
|
|
|
6176
6216
|
:param value: joint value (e.g rad for revolute or meters for prismatic)"""
|
|
6177
6217
|
...
|
|
6178
6218
|
|
|
6219
|
+
def set_joint_acceleration(
|
|
6220
|
+
self: RobotWrapper,
|
|
6221
|
+
name: str, # const std::string &
|
|
6222
|
+
value: float, # double
|
|
6223
|
+
|
|
6224
|
+
) -> None:
|
|
6225
|
+
"""Sets the joint acceleration in state.qd.
|
|
6226
|
+
|
|
6227
|
+
|
|
6228
|
+
:param name: joint name
|
|
6229
|
+
|
|
6230
|
+
:param value: joint acceleration"""
|
|
6231
|
+
...
|
|
6232
|
+
|
|
6179
6233
|
def set_joint_limits(
|
|
6180
6234
|
self: RobotWrapper,
|
|
6181
6235
|
name: str, # const std::string &
|
|
@@ -6301,7 +6355,7 @@ class RobotWrapper:
|
|
|
6301
6355
|
self: RobotWrapper,
|
|
6302
6356
|
|
|
6303
6357
|
) -> None:
|
|
6304
|
-
"""Update
|
|
6358
|
+
"""Update internal computation for kinematics (frames, jacobian). This method should be called when the robot state has changed."""
|
|
6305
6359
|
...
|
|
6306
6360
|
|
|
6307
6361
|
visual_model: any # pinocchio::GeometryModel
|
|
@@ -7191,19 +7245,6 @@ def flatten_on_floor(
|
|
|
7191
7245
|
...
|
|
7192
7246
|
|
|
7193
7247
|
|
|
7194
|
-
def frame(
|
|
7195
|
-
matrix: any, # Eigen::Matrix4d
|
|
7196
|
-
|
|
7197
|
-
) -> numpy.ndarray:
|
|
7198
|
-
"""Makes an Affine3d from a 4x4 matrix (for python bindings)
|
|
7199
|
-
|
|
7200
|
-
|
|
7201
|
-
:param matrix: the 4x4 matrix
|
|
7202
|
-
|
|
7203
|
-
:return: The Affine3d"""
|
|
7204
|
-
...
|
|
7205
|
-
|
|
7206
|
-
|
|
7207
7248
|
def frame_yaw(
|
|
7208
7249
|
rotation: numpy.ndarray, # Eigen::Matrix3d
|
|
7209
7250
|
|
|
Binary file
|
cmeel.prefix/lib/python3.10/site-packages/placo_utils/__pycache__/visualization.cpython-310.pyc
CHANGED
|
Binary file
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
cmeel.prefix/lib/liblibplaco.so,sha256=
|
|
2
|
-
cmeel.prefix/lib/python3.10/site-packages/placo.pyi,sha256=
|
|
3
|
-
cmeel.prefix/lib/python3.10/site-packages/placo.so,sha256=
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.so,sha256=LA0wX_wjE4-eUV1gVQfvvKU5G6HzWc6-zuDYipFuMmI,2377288
|
|
2
|
+
cmeel.prefix/lib/python3.10/site-packages/placo.pyi,sha256=6e0UoGP1Q5mbOZtjTu2fErtGNF4Cay4yiNHmbBceEsY,152828
|
|
3
|
+
cmeel.prefix/lib/python3.10/site-packages/placo.so,sha256=AKUO5w1YL7C4_DjHeCfxPma2-I94-8sV232cGzYzSTA,9113176
|
|
4
4
|
cmeel.prefix/lib/python3.10/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
5
|
cmeel.prefix/lib/python3.10/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
6
|
cmeel.prefix/lib/python3.10/site-packages/placo_utils/visualization.py,sha256=nsO5-1y0itnIOR79-HrQSvS7YEjJmV5MAROULnfX3x8,7590
|
|
7
7
|
cmeel.prefix/lib/python3.10/site-packages/placo_utils/__pycache__/__init__.cpython-310.pyc,sha256=tJrTajdA7hNO9tZkE1oN49rU-61lCNUED-mQXdAvzAs,261
|
|
8
8
|
cmeel.prefix/lib/python3.10/site-packages/placo_utils/__pycache__/tf.cpython-310.pyc,sha256=APWQ5-zKgbEcMnkv6Hxgj_Q46jpnuOyL9YbSrj6Z5Vw,204
|
|
9
|
-
cmeel.prefix/lib/python3.10/site-packages/placo_utils/__pycache__/visualization.cpython-310.pyc,sha256=
|
|
10
|
-
placo-0.3.
|
|
11
|
-
placo-0.3.
|
|
12
|
-
placo-0.3.
|
|
13
|
-
placo-0.3.
|
|
14
|
-
placo-0.3.
|
|
9
|
+
cmeel.prefix/lib/python3.10/site-packages/placo_utils/__pycache__/visualization.cpython-310.pyc,sha256=Yu4t9oM-MHJCjF11e8G6LjCQJFIpqYmoAcA5_yY66y0,6560
|
|
10
|
+
placo-0.3.8.dist-info/license/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
11
|
+
placo-0.3.8.dist-info/METADATA,sha256=Gs02_iU-AAYYcGfvXydxHjAVhaa41o71W6ivl4GuOik,1643
|
|
12
|
+
placo-0.3.8.dist-info/WHEEL,sha256=GG3aWrINZ6-EfOf2jaRO1SBQfOwv0eJwKe893X49tgU,115
|
|
13
|
+
placo-0.3.8.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
+
placo-0.3.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|