placo 0.8.10__0-cp311-cp311-manylinux_2_28_x86_64.whl → 0.9.0__0-cp311-cp311-manylinux_2_28_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.

Binary file
@@ -15,6 +15,7 @@ Contact6D = typing.NewType("Contact6D", None)
15
15
  CubicSpline = typing.NewType("CubicSpline", None)
16
16
  CubicSpline3D = typing.NewType("CubicSpline3D", None)
17
17
  Distance = typing.NewType("Distance", None)
18
+ DistanceConstraint = typing.NewType("DistanceConstraint", None)
18
19
  DistanceTask = typing.NewType("DistanceTask", None)
19
20
  DynamicsCoMTask = typing.NewType("DynamicsCoMTask", None)
20
21
  DynamicsConstraint = typing.NewType("DynamicsConstraint", None)
@@ -90,6 +91,7 @@ WPGTrajectoryPart = typing.NewType("WPGTrajectoryPart", None)
90
91
  WalkPatternGenerator = typing.NewType("WalkPatternGenerator", None)
91
92
  WalkTasks = typing.NewType("WalkTasks", None)
92
93
  WheelTask = typing.NewType("WheelTask", None)
94
+ YawConstraint = typing.NewType("YawConstraint", None)
93
95
  boost_type_index = typing.NewType("boost_type_index", None)
94
96
  map_indexing_suite_map_string_double_entry = typing.NewType("map_indexing_suite_map_string_double_entry", None)
95
97
  map_string_double = typing.NewType("map_string_double", None)
@@ -1158,6 +1160,57 @@ None( (placo.Distance)arg1) -> object :
1158
1160
  """
1159
1161
 
1160
1162
 
1163
+ class DistanceConstraint:
1164
+ def __init__(
1165
+ self,
1166
+ frame_a: any, # pinocchio::FrameIndex
1167
+ frame_b: any, # pinocchio::FrameIndex
1168
+ distance_max: float, # double
1169
+ ) -> any:
1170
+ """
1171
+ Constraints the distance betweek two points in the robot.
1172
+ """
1173
+ ...
1174
+
1175
+ def configure(
1176
+ self,
1177
+ name: str, # std::string
1178
+ priority: str = "soft", # std::string
1179
+ weight: float = 1.0, # double
1180
+ ) -> None:
1181
+ """
1182
+ Configures the object.
1183
+
1184
+ :param str name: task name
1185
+ :param str priority: task priority (hard, soft or scaled)
1186
+ :param float weight: task weight
1187
+ """
1188
+ ...
1189
+
1190
+ distance_max: any
1191
+ """
1192
+
1193
+ None( (placo.DistanceConstraint)arg1) -> float :
1194
+
1195
+ C++ signature :
1196
+ double {lvalue} None(placo::kinematics::DistanceConstraint {lvalue})
1197
+ """
1198
+
1199
+ name: any
1200
+ """
1201
+
1202
+ None( (placo.Prioritized)arg1) -> str :
1203
+
1204
+ C++ signature :
1205
+ std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
1206
+ """
1207
+
1208
+ priority: str
1209
+ """
1210
+ Priority [str]
1211
+ """
1212
+
1213
+
1161
1214
  class DistanceTask:
1162
1215
  A: any
1163
1216
  """
@@ -4099,7 +4152,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4099
4152
  """
4100
4153
  Computes all minimum distances between current collision pairs.
4101
4154
 
4102
- :return: <Element 'para' at 0x7f02bff49f30>
4155
+ :return: <Element 'para' at 0x7f42e2ce1fd0>
4103
4156
  """
4104
4157
  ...
4105
4158
 
@@ -4131,7 +4184,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4131
4184
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
4132
4185
 
4133
4186
  :param any frame: the frame for which we want the jacobian
4134
- :return: <Element 'para' at 0x7f02bff488b0>
4187
+ :return: <Element 'para' at 0x7f42e2ce34c0>
4135
4188
  """
4136
4189
  ...
4137
4190
 
@@ -4144,7 +4197,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4144
4197
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
4145
4198
 
4146
4199
  :param any frame: the frame for which we want the jacobian time variation
4147
- :return: <Element 'para' at 0x7f02bff4a570>
4200
+ :return: <Element 'para' at 0x7f42e2b33f60>
4148
4201
  """
4149
4202
  ...
4150
4203
 
@@ -4450,7 +4503,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
4450
4503
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
4451
4504
 
4452
4505
  :param bool stop_at_first: whether to stop at the first collision found
4453
- :return: <Element 'para' at 0x7f02bff3ce00>
4506
+ :return: <Element 'para' at 0x7f42e2ce2660>
4454
4507
  """
4455
4508
  ...
4456
4509
 
@@ -5238,6 +5291,21 @@ None( (placo.KinematicsSolver)arg1) -> int :
5238
5291
  """
5239
5292
  ...
5240
5293
 
5294
+ def add_distance_constraint(
5295
+ self,
5296
+ frame_a: str, # std::string
5297
+ frame_b: str, # std::string
5298
+ distance_max: float, # double
5299
+ ) -> DistanceConstraint:
5300
+ """
5301
+ Adds a distance constraint.
5302
+
5303
+ :param str frame_a: frame A
5304
+ :param str frame_b: frame B
5305
+ :param float distance_max: maximum distance between the two frames
5306
+ """
5307
+ ...
5308
+
5241
5309
  def add_distance_task(
5242
5310
  self,
5243
5311
  frame_a: str, # std::string
@@ -5426,6 +5494,21 @@ None( (placo.KinematicsSolver)arg1) -> int :
5426
5494
  """
5427
5495
  ...
5428
5496
 
5497
+ def add_yaw_constraint(
5498
+ self,
5499
+ frame_a: str, # std::string
5500
+ frame_b: str, # std::string
5501
+ alpha_max: float, # double
5502
+ ) -> YawConstraint:
5503
+ """
5504
+ Adds a yaw constraint.
5505
+
5506
+ :param str frame_a: frame A
5507
+ :param str frame_b: frame B
5508
+ :param float alpha_max: angle max for yaw of x-axis in frame b in a
5509
+ """
5510
+ ...
5511
+
5429
5512
  def clear(
5430
5513
  self,
5431
5514
  ) -> None:
@@ -7278,7 +7361,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7278
7361
  """
7279
7362
  Computes all minimum distances between current collision pairs.
7280
7363
 
7281
- :return: <Element 'para' at 0x7f02bff1a610>
7364
+ :return: <Element 'para' at 0x7f42e2b5d080>
7282
7365
  """
7283
7366
  ...
7284
7367
 
@@ -7291,7 +7374,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7291
7374
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
7292
7375
 
7293
7376
  :param any frame: the frame for which we want the jacobian
7294
- :return: <Element 'para' at 0x7f02bff1b1f0>
7377
+ :return: <Element 'para' at 0x7f42e2b5e020>
7295
7378
  """
7296
7379
  ...
7297
7380
 
@@ -7304,7 +7387,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7304
7387
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
7305
7388
 
7306
7389
  :param any frame: the frame for which we want the jacobian time variation
7307
- :return: <Element 'para' at 0x7f02bff73a10>
7390
+ :return: <Element 'para' at 0x7f42e2b5ff60>
7308
7391
  """
7309
7392
  ...
7310
7393
 
@@ -7542,7 +7625,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
7542
7625
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
7543
7626
 
7544
7627
  :param bool stop_at_first: whether to stop at the first collision found
7545
- :return: <Element 'para' at 0x7f02bff1a3e0>
7628
+ :return: <Element 'para' at 0x7f42e2b5cd60>
7546
7629
  """
7547
7630
  ...
7548
7631
 
@@ -9099,6 +9182,57 @@ None( (placo.WheelTask)arg1) -> float :
9099
9182
  ...
9100
9183
 
9101
9184
 
9185
+ class YawConstraint:
9186
+ def __init__(
9187
+ self,
9188
+ frame_a: any, # pinocchio::FrameIndex
9189
+ frame_b: any, # pinocchio::FrameIndex
9190
+ angle_max: float, # double
9191
+ ) -> any:
9192
+ """
9193
+ Constrains the yaw of frame b in frame a, such that the x-axis of frame b should remain with +- angle_max.
9194
+ """
9195
+ ...
9196
+
9197
+ angle_max: any
9198
+ """
9199
+
9200
+ None( (placo.YawConstraint)arg1) -> float :
9201
+
9202
+ C++ signature :
9203
+ double {lvalue} None(placo::kinematics::YawConstraint {lvalue})
9204
+ """
9205
+
9206
+ def configure(
9207
+ self,
9208
+ name: str, # std::string
9209
+ priority: str = "soft", # std::string
9210
+ weight: float = 1.0, # double
9211
+ ) -> None:
9212
+ """
9213
+ Configures the object.
9214
+
9215
+ :param str name: task name
9216
+ :param str priority: task priority (hard, soft or scaled)
9217
+ :param float weight: task weight
9218
+ """
9219
+ ...
9220
+
9221
+ name: any
9222
+ """
9223
+
9224
+ None( (placo.Prioritized)arg1) -> str :
9225
+
9226
+ C++ signature :
9227
+ std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
9228
+ """
9229
+
9230
+ priority: str
9231
+ """
9232
+ Priority [str]
9233
+ """
9234
+
9235
+
9102
9236
  class boost_type_index:
9103
9237
  def __init__(
9104
9238
  ) -> any:
@@ -9327,4 +9461,4 @@ def wrap_angle(
9327
9461
  ...
9328
9462
 
9329
9463
 
9330
- __groups__ = {'placo::dynamics': ['AvoidSelfCollisionsDynamicsConstraint', 'Contact', 'Contact6D', 'DynamicsCoMTask', 'DynamicsConstraint', 'DynamicsFrameTask', 'DynamicsGearTask', 'DynamicsJointsTask', 'DynamicsOrientationTask', 'DynamicsPositionTask', 'DynamicsRelativeFrameTask', 'DynamicsRelativeOrientationTask', 'DynamicsRelativePositionTask', 'DynamicsSolver', 'DynamicsSolverResult', 'DynamicsTask', 'DynamicsTorqueTask', 'ExternalWrenchContact', 'LineContact', 'PointContact', 'PuppetContact', 'TaskContact'], 'placo::kinematics': ['AvoidSelfCollisionsKinematicsConstraint', 'AxisAlignTask', 'CentroidalMomentumTask', 'CoMPolygonConstraint', 'CoMTask', 'ConeConstraint', 'DistanceTask', 'FrameTask', 'GearTask', 'JointSpaceHalfSpacesConstraint', 'JointsTask', 'KinematicsConstraint', 'KinematicsSolver', 'KineticEnergyRegularizationTask', 'ManipulabilityTask', 'OrientationTask', 'PositionTask', 'RegularizationTask', 'RelativeFrameTask', 'RelativeOrientationTask', 'RelativePositionTask', 'Task', 'WheelTask'], 'placo::tools': ['AxisesMask', 'CubicSpline', 'CubicSpline3D', 'Polynom', 'Prioritized', 'Segment'], 'placo::model': ['Collision', 'Distance', 'RobotWrapper', 'RobotWrapper_State'], 'placo::problem': ['Expression', 'Integrator', 'IntegratorTrajectory', 'PolygonConstraint', 'Problem', 'ProblemConstraint', 'ProblemPolynom', 'QPError', 'Sparsity', 'SparsityInterval', 'Variable'], 'placo::humanoid': ['Footstep', 'FootstepsPlanner', 'FootstepsPlannerNaive', 'FootstepsPlannerRepetitive', 'HumanoidParameters', 'HumanoidRobot', 'LIPM', 'LIPMTrajectory', 'Support', 'SwingFoot', 'SwingFootCubic', 'SwingFootCubicTrajectory', 'SwingFootQuintic', 'SwingFootQuinticTrajectory', 'SwingFootTrajectory', 'WPGTrajectory', 'WPGTrajectoryPart', 'WalkPatternGenerator', 'WalkTasks']}
9464
+ __groups__ = {'placo::dynamics': ['AvoidSelfCollisionsDynamicsConstraint', 'Contact', 'Contact6D', 'DynamicsCoMTask', 'DynamicsConstraint', 'DynamicsFrameTask', 'DynamicsGearTask', 'DynamicsJointsTask', 'DynamicsOrientationTask', 'DynamicsPositionTask', 'DynamicsRelativeFrameTask', 'DynamicsRelativeOrientationTask', 'DynamicsRelativePositionTask', 'DynamicsSolver', 'DynamicsSolverResult', 'DynamicsTask', 'DynamicsTorqueTask', 'ExternalWrenchContact', 'LineContact', 'PointContact', 'PuppetContact', 'TaskContact'], 'placo::kinematics': ['AvoidSelfCollisionsKinematicsConstraint', 'AxisAlignTask', 'CentroidalMomentumTask', 'CoMPolygonConstraint', 'CoMTask', 'ConeConstraint', 'DistanceConstraint', 'DistanceTask', 'FrameTask', 'GearTask', 'JointSpaceHalfSpacesConstraint', 'JointsTask', 'KinematicsConstraint', 'KinematicsSolver', 'KineticEnergyRegularizationTask', 'ManipulabilityTask', 'OrientationTask', 'PositionTask', 'RegularizationTask', 'RelativeFrameTask', 'RelativeOrientationTask', 'RelativePositionTask', 'Task', 'WheelTask', 'YawConstraint'], 'placo::tools': ['AxisesMask', 'CubicSpline', 'CubicSpline3D', 'Polynom', 'Prioritized', 'Segment'], 'placo::model': ['Collision', 'Distance', 'RobotWrapper', 'RobotWrapper_State'], 'placo::problem': ['Expression', 'Integrator', 'IntegratorTrajectory', 'PolygonConstraint', 'Problem', 'ProblemConstraint', 'ProblemPolynom', 'QPError', 'Sparsity', 'SparsityInterval', 'Variable'], 'placo::humanoid': ['Footstep', 'FootstepsPlanner', 'FootstepsPlannerNaive', 'FootstepsPlannerRepetitive', 'HumanoidParameters', 'HumanoidRobot', 'LIPM', 'LIPMTrajectory', 'Support', 'SwingFoot', 'SwingFootCubic', 'SwingFootCubicTrajectory', 'SwingFootQuintic', 'SwingFootQuinticTrajectory', 'SwingFootTrajectory', 'WPGTrajectory', 'WPGTrajectoryPart', 'WalkPatternGenerator', 'WalkTasks']}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: placo
3
- Version: 0.8.10
3
+ Version: 0.9.0
4
4
  Summary: PlaCo: Rhoban Planning and Control
5
5
  Requires-Python: >= 3.9
6
6
  License-Expression: MIT
@@ -0,0 +1,12 @@
1
+ cmeel.prefix/lib/liblibplaco.so,sha256=Qi7VA_Rz4EdOKciICTNUrPWW0ywybw-pscAySsI01O8,1976776
2
+ cmeel.prefix/lib/python3.11/site-packages/placo.pyi,sha256=e-LDZseJwuzlOSOq1-jSujbVQLiEpQyX71KqklNBHwg,195950
3
+ cmeel.prefix/lib/python3.11/site-packages/placo.so,sha256=7RiFXgKbo1vdvD_m4uAsu7rNWAs8VT8pyTG9am1JQsI,8437328
4
+ cmeel.prefix/lib/python3.11/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
+ cmeel.prefix/lib/python3.11/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
+ cmeel.prefix/lib/python3.11/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
+ cmeel.prefix/lib/python3.11/site-packages/placo_utils/visualization.py,sha256=MiUn91MtezIpaP-bBj5g5PqVQNbDWdKkZxbvS_nu93I,8330
8
+ placo-0.9.0.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
9
+ placo-0.9.0.dist-info/METADATA,sha256=TPffHbvHnORg7JqUME69Tzf179PvC5sokN6xY2AhY5g,2620
10
+ placo-0.9.0.dist-info/WHEEL,sha256=4kQvjbP6MS9CMWLI0C5DqDYm1zrnyiEx5eHwljDK5vs,115
11
+ placo-0.9.0.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
+ placo-0.9.0.dist-info/RECORD,,
@@ -1,12 +0,0 @@
1
- cmeel.prefix/lib/liblibplaco.so,sha256=9GLW_LHzXFSsNheuo5LhwMlexssQjBk1zYG9_8DePyo,1961960
2
- cmeel.prefix/lib/python3.11/site-packages/placo.pyi,sha256=-bDcMj8EpnI2gbwfOAg4vTrOGeUXeJ20WfmiJ6LSWe8,192932
3
- cmeel.prefix/lib/python3.11/site-packages/placo.so,sha256=RqSg3XZITLl7njn5T9Uv_cgUVVQ_5gKdwaZOcYW89Ng,8343504
4
- cmeel.prefix/lib/python3.11/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
- cmeel.prefix/lib/python3.11/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
- cmeel.prefix/lib/python3.11/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
- cmeel.prefix/lib/python3.11/site-packages/placo_utils/visualization.py,sha256=MiUn91MtezIpaP-bBj5g5PqVQNbDWdKkZxbvS_nu93I,8330
8
- placo-0.8.10.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
9
- placo-0.8.10.dist-info/METADATA,sha256=1LTdooqrP_YI0_MPBR5qsfSucytLvTeG84QY0MxVZ_A,2621
10
- placo-0.8.10.dist-info/WHEEL,sha256=4kQvjbP6MS9CMWLI0C5DqDYm1zrnyiEx5eHwljDK5vs,115
11
- placo-0.8.10.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
- placo-0.8.10.dist-info/RECORD,,
File without changes