placo 0.4.5__0-cp310-cp310-manylinux_2_35_x86_64.whl → 0.4.6__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 +63 -0
- cmeel.prefix/lib/python3.10/site-packages/placo.so +0 -0
- {placo-0.4.5.dist-info → placo-0.4.6.dist-info}/METADATA +1 -1
- {placo-0.4.5.dist-info → placo-0.4.6.dist-info}/RECORD +8 -8
- {placo-0.4.5.dist-info → placo-0.4.6.dist-info}/WHEEL +1 -1
- {placo-0.4.5.dist-info → placo-0.4.6.dist-info}/license/LICENSE +0 -0
- {placo-0.4.5.dist-info → placo-0.4.6.dist-info}/top_level.txt +0 -0
cmeel.prefix/lib/liblibplaco.so
CHANGED
|
Binary file
|
|
@@ -1113,6 +1113,23 @@ class DynamicsGearTask:
|
|
|
1113
1113
|
) -> None:
|
|
1114
1114
|
...
|
|
1115
1115
|
|
|
1116
|
+
def add_gear(
|
|
1117
|
+
self: DynamicsGearTask,
|
|
1118
|
+
target: str, # std::string
|
|
1119
|
+
source: str, # std::string
|
|
1120
|
+
ratio: float, # double
|
|
1121
|
+
|
|
1122
|
+
) -> None:
|
|
1123
|
+
"""Adds a gear constraint, you can add multiple source for the same target, they will be summed.
|
|
1124
|
+
|
|
1125
|
+
|
|
1126
|
+
:param target: target joint
|
|
1127
|
+
|
|
1128
|
+
:param source: source joint
|
|
1129
|
+
|
|
1130
|
+
:param ratio: ratio"""
|
|
1131
|
+
...
|
|
1132
|
+
|
|
1116
1133
|
b: numpy.ndarray # Eigen::MatrixXd
|
|
1117
1134
|
"""b vector in Ax = b, where x is the accelerations
|
|
1118
1135
|
"""
|
|
@@ -2057,6 +2074,18 @@ class DynamicsSolver:
|
|
|
2057
2074
|
) -> Contact:
|
|
2058
2075
|
...
|
|
2059
2076
|
|
|
2077
|
+
gravity_only: bool # bool
|
|
2078
|
+
"""Use gravity only (no coriolis, no centrifugal)
|
|
2079
|
+
"""
|
|
2080
|
+
|
|
2081
|
+
def mask_fbase(
|
|
2082
|
+
self: DynamicsSolver,
|
|
2083
|
+
masked: bool, # bool
|
|
2084
|
+
|
|
2085
|
+
) -> None:
|
|
2086
|
+
"""Decides if the floating base should be masked."""
|
|
2087
|
+
...
|
|
2088
|
+
|
|
2060
2089
|
optimize_contact_forces: bool # bool
|
|
2061
2090
|
"""If true, the solver will try to optimize the contact forces by removing variables.
|
|
2062
2091
|
"""
|
|
@@ -2137,6 +2166,7 @@ class DynamicsSolver:
|
|
|
2137
2166
|
|
|
2138
2167
|
def solve(
|
|
2139
2168
|
self: DynamicsSolver,
|
|
2169
|
+
integrate: bool = False, # bool
|
|
2140
2170
|
|
|
2141
2171
|
) -> DynamicsSolverResult:
|
|
2142
2172
|
...
|
|
@@ -2810,6 +2840,23 @@ class GearTask:
|
|
|
2810
2840
|
"""see KinematicsSolver::add_gear_task"""
|
|
2811
2841
|
...
|
|
2812
2842
|
|
|
2843
|
+
def add_gear(
|
|
2844
|
+
self: GearTask,
|
|
2845
|
+
target: str, # std::string
|
|
2846
|
+
source: str, # std::string
|
|
2847
|
+
ratio: float, # double
|
|
2848
|
+
|
|
2849
|
+
) -> None:
|
|
2850
|
+
"""Adds a gear constraint, you can add multiple source for the same target, they will be summed.
|
|
2851
|
+
|
|
2852
|
+
|
|
2853
|
+
:param target: target joint
|
|
2854
|
+
|
|
2855
|
+
:param source: source joint
|
|
2856
|
+
|
|
2857
|
+
:param ratio: ratio"""
|
|
2858
|
+
...
|
|
2859
|
+
|
|
2813
2860
|
b: numpy.ndarray # Eigen::MatrixXd
|
|
2814
2861
|
"""Vector b in the task Ax = b, where x are the joint delta positions.
|
|
2815
2862
|
"""
|
|
@@ -3443,6 +3490,14 @@ class HumanoidRobot:
|
|
|
3443
3490
|
:param T_world_frameTarget: transformation matrix"""
|
|
3444
3491
|
...
|
|
3445
3492
|
|
|
3493
|
+
def set_gravity(
|
|
3494
|
+
self: HumanoidRobot,
|
|
3495
|
+
gravity: numpy.ndarray, # Eigen::Vector3d
|
|
3496
|
+
|
|
3497
|
+
) -> None:
|
|
3498
|
+
"""Sets the gravity vector."""
|
|
3499
|
+
...
|
|
3500
|
+
|
|
3446
3501
|
def set_joint(
|
|
3447
3502
|
self: HumanoidRobot,
|
|
3448
3503
|
name: str, # const std::string &
|
|
@@ -5660,6 +5715,14 @@ class RobotWrapper:
|
|
|
5660
5715
|
:param T_world_frameTarget: transformation matrix"""
|
|
5661
5716
|
...
|
|
5662
5717
|
|
|
5718
|
+
def set_gravity(
|
|
5719
|
+
self: RobotWrapper,
|
|
5720
|
+
gravity: numpy.ndarray, # Eigen::Vector3d
|
|
5721
|
+
|
|
5722
|
+
) -> None:
|
|
5723
|
+
"""Sets the gravity vector."""
|
|
5724
|
+
...
|
|
5725
|
+
|
|
5663
5726
|
def set_joint(
|
|
5664
5727
|
self: RobotWrapper,
|
|
5665
5728
|
name: str, # const std::string &
|
|
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=i1DP7aiiT29V20AUkzUUI-IiYj1NgDERwpjYsQcr8PU,2403184
|
|
2
|
+
cmeel.prefix/lib/python3.10/site-packages/placo.pyi,sha256=HB_5dNRYuAvHO4ZvSAP1PmAAa1bCVNPUrCXj--Cd34w,145439
|
|
3
|
+
cmeel.prefix/lib/python3.10/site-packages/placo.so,sha256=15wzTZ9yEayIoUDEREcmAA9weYF1KMuhlf646dJQXdM,9388056
|
|
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=hCcU3oQSzb2Si6P9V6n9oEtgigy6N4vjUn_f-bEHfs8,7344
|
|
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
9
|
cmeel.prefix/lib/python3.10/site-packages/placo_utils/__pycache__/visualization.cpython-310.pyc,sha256=0cG3me-2-43HytnSQYn-yhKHE2ccRQryeBPiU7Ux4-g,6430
|
|
10
|
-
placo-0.4.
|
|
11
|
-
placo-0.4.
|
|
12
|
-
placo-0.4.
|
|
13
|
-
placo-0.4.
|
|
14
|
-
placo-0.4.
|
|
10
|
+
placo-0.4.6.dist-info/license/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
11
|
+
placo-0.4.6.dist-info/METADATA,sha256=yAG6oo3mH3S0qLneOybQ-qfsPMUuHPYTI_bEUOF0gZc,873
|
|
12
|
+
placo-0.4.6.dist-info/WHEEL,sha256=y7GzdFHC0qrZwnE2SqFjrXxL9NLtXflO9hVb0PhWwIU,115
|
|
13
|
+
placo-0.4.6.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
+
placo-0.4.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|