placo 0.8.9__0-cp313-cp313-manylinux_2_28_x86_64.whl → 0.9.0__0-cp313-cp313-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
  """
@@ -4103,7 +4156,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4103
4156
  """
4104
4157
  Computes all minimum distances between current collision pairs.
4105
4158
 
4106
- :return: <Element 'para' at 0x7fc470f24db0>
4159
+ :return: <Element 'para' at 0x7fbe34986c50>
4107
4160
  """
4108
4161
  ...
4109
4162
 
@@ -4135,7 +4188,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4135
4188
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
4136
4189
 
4137
4190
  :param any frame: the frame for which we want the jacobian
4138
- :return: <Element 'para' at 0x7fc470f53290>
4191
+ :return: <Element 'para' at 0x7fbe34985ad0>
4139
4192
  """
4140
4193
  ...
4141
4194
 
@@ -4148,7 +4201,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4148
4201
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
4149
4202
 
4150
4203
  :param any frame: the frame for which we want the jacobian time variation
4151
- :return: <Element 'para' at 0x7fc470f50180>
4204
+ :return: <Element 'para' at 0x7fbe34984e00>
4152
4205
  """
4153
4206
  ...
4154
4207
 
@@ -4454,7 +4507,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
4454
4507
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
4455
4508
 
4456
4509
  :param bool stop_at_first: whether to stop at the first collision found
4457
- :return: <Element 'para' at 0x7fc470f25800>
4510
+ :return: <Element 'para' at 0x7fbe34987060>
4458
4511
  """
4459
4512
  ...
4460
4513
 
@@ -5246,6 +5299,21 @@ None( (placo.KinematicsSolver)arg1) -> int :
5246
5299
  """
5247
5300
  ...
5248
5301
 
5302
+ def add_distance_constraint(
5303
+ self,
5304
+ frame_a: str, # std::string
5305
+ frame_b: str, # std::string
5306
+ distance_max: float, # double
5307
+ ) -> DistanceConstraint:
5308
+ """
5309
+ Adds a distance constraint.
5310
+
5311
+ :param str frame_a: frame A
5312
+ :param str frame_b: frame B
5313
+ :param float distance_max: maximum distance between the two frames
5314
+ """
5315
+ ...
5316
+
5249
5317
  def add_distance_task(
5250
5318
  self,
5251
5319
  frame_a: str, # std::string
@@ -5434,6 +5502,21 @@ None( (placo.KinematicsSolver)arg1) -> int :
5434
5502
  """
5435
5503
  ...
5436
5504
 
5505
+ def add_yaw_constraint(
5506
+ self,
5507
+ frame_a: str, # std::string
5508
+ frame_b: str, # std::string
5509
+ alpha_max: float, # double
5510
+ ) -> YawConstraint:
5511
+ """
5512
+ Adds a yaw constraint.
5513
+
5514
+ :param str frame_a: frame A
5515
+ :param str frame_b: frame B
5516
+ :param float alpha_max: angle max for yaw of x-axis in frame b in a
5517
+ """
5518
+ ...
5519
+
5437
5520
  def clear(
5438
5521
  self,
5439
5522
  ) -> None:
@@ -7286,7 +7369,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7286
7369
  """
7287
7370
  Computes all minimum distances between current collision pairs.
7288
7371
 
7289
- :return: <Element 'para' at 0x7fc470f11580>
7372
+ :return: <Element 'para' at 0x7fbe349868e0>
7290
7373
  """
7291
7374
  ...
7292
7375
 
@@ -7299,7 +7382,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7299
7382
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
7300
7383
 
7301
7384
  :param any frame: the frame for which we want the jacobian
7302
- :return: <Element 'para' at 0x7fc470f12110>
7385
+ :return: <Element 'para' at 0x7fbe34987bf0>
7303
7386
  """
7304
7387
  ...
7305
7388
 
@@ -7312,7 +7395,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7312
7395
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
7313
7396
 
7314
7397
  :param any frame: the frame for which we want the jacobian time variation
7315
- :return: <Element 'para' at 0x7fc470ef8c70>
7398
+ :return: <Element 'para' at 0x7fbe349c9030>
7316
7399
  """
7317
7400
  ...
7318
7401
 
@@ -7550,7 +7633,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
7550
7633
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
7551
7634
 
7552
7635
  :param bool stop_at_first: whether to stop at the first collision found
7553
- :return: <Element 'para' at 0x7fc470f12f20>
7636
+ :return: <Element 'para' at 0x7fbe34987420>
7554
7637
  """
7555
7638
  ...
7556
7639
 
@@ -9107,6 +9190,57 @@ None( (placo.WheelTask)arg1) -> float :
9107
9190
  ...
9108
9191
 
9109
9192
 
9193
+ class YawConstraint:
9194
+ def __init__(
9195
+ self,
9196
+ frame_a: any, # pinocchio::FrameIndex
9197
+ frame_b: any, # pinocchio::FrameIndex
9198
+ angle_max: float, # double
9199
+ ) -> any:
9200
+ """
9201
+ Constrains the yaw of frame b in frame a, such that the x-axis of frame b should remain with +- angle_max.
9202
+ """
9203
+ ...
9204
+
9205
+ angle_max: any
9206
+ """
9207
+
9208
+ None( (placo.YawConstraint)arg1) -> float :
9209
+
9210
+ C++ signature :
9211
+ double {lvalue} None(placo::kinematics::YawConstraint {lvalue})
9212
+ """
9213
+
9214
+ def configure(
9215
+ self,
9216
+ name: str, # std::string
9217
+ priority: str = "soft", # std::string
9218
+ weight: float = 1.0, # double
9219
+ ) -> None:
9220
+ """
9221
+ Configures the object.
9222
+
9223
+ :param str name: task name
9224
+ :param str priority: task priority (hard, soft or scaled)
9225
+ :param float weight: task weight
9226
+ """
9227
+ ...
9228
+
9229
+ name: any
9230
+ """
9231
+
9232
+ None( (placo.Prioritized)arg1) -> str :
9233
+
9234
+ C++ signature :
9235
+ std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
9236
+ """
9237
+
9238
+ priority: str
9239
+ """
9240
+ Priority [str]
9241
+ """
9242
+
9243
+
9110
9244
  class boost_type_index:
9111
9245
  def __init__(
9112
9246
  ) -> any:
@@ -9335,4 +9469,4 @@ def wrap_angle(
9335
9469
  ...
9336
9470
 
9337
9471
 
9338
- __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']}
9472
+ __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.9
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=U5vgbJ4zQsuwpKS48_h5_cAuwEDwWf7c3apOaVrqj7k,1976776
2
+ cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=k-ESN0eoeuWb9S-wo0Vt-ICCQa7XdBWCimU-sXONi2s,196028
3
+ cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=Y-269sewvDmSmgo2LPf1XToekHgiZ6Ps7EjUstZbu_E,8407488
4
+ cmeel.prefix/lib/python3.13/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
+ cmeel.prefix/lib/python3.13/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
+ cmeel.prefix/lib/python3.13/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
+ cmeel.prefix/lib/python3.13/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=0HdmGrCnJOL3jd3aEKVYybYMjjAJ-FS-_IUmzdFUhHE,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=rIlusOeR_7r66dyD1RTH36p_-qvYXXJ4gHHDJojPNw0,1961512
2
- cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=8s54DWJq0qsQxzfkYQffML4vRPV9l_g_Z2tD3uLp8zA,193010
3
- cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=yoh4AfVC6aPQEZhZ1djvCFvOrff35bZBRKszRSvkuZE,8314352
4
- cmeel.prefix/lib/python3.13/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
- cmeel.prefix/lib/python3.13/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
- cmeel.prefix/lib/python3.13/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
- cmeel.prefix/lib/python3.13/site-packages/placo_utils/visualization.py,sha256=MiUn91MtezIpaP-bBj5g5PqVQNbDWdKkZxbvS_nu93I,8330
8
- placo-0.8.9.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
9
- placo-0.8.9.dist-info/METADATA,sha256=_RinG8JYHZa2H-6_2thwo4K72kq4zRwOO1eUtdhh8mU,2620
10
- placo-0.8.9.dist-info/WHEEL,sha256=0HdmGrCnJOL3jd3aEKVYybYMjjAJ-FS-_IUmzdFUhHE,115
11
- placo-0.8.9.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
- placo-0.8.9.dist-info/RECORD,,
File without changes