placo 0.8.10__0-cp39-cp39-manylinux_2_28_aarch64.whl → 0.9.0__0-cp39-cp39-manylinux_2_28_aarch64.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
  """
@@ -4095,7 +4148,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4095
4148
  """
4096
4149
  Computes all minimum distances between current collision pairs.
4097
4150
 
4098
- :return: <Element 'para' at 0xff825dd00ea0>
4151
+ :return: <Element 'para' at 0xff5e2dac0130>
4099
4152
  """
4100
4153
  ...
4101
4154
 
@@ -4127,7 +4180,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4127
4180
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
4128
4181
 
4129
4182
  :param any frame: the frame for which we want the jacobian
4130
- :return: <Element 'para' at 0xff825dcf1950>
4183
+ :return: <Element 'para' at 0xff5e2dac34a0>
4131
4184
  """
4132
4185
  ...
4133
4186
 
@@ -4140,7 +4193,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4140
4193
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
4141
4194
 
4142
4195
  :param any frame: the frame for which we want the jacobian time variation
4143
- :return: <Element 'para' at 0xff825dce83b0>
4196
+ :return: <Element 'para' at 0xff5e2dacc3b0>
4144
4197
  """
4145
4198
  ...
4146
4199
 
@@ -4446,7 +4499,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
4446
4499
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
4447
4500
 
4448
4501
  :param bool stop_at_first: whether to stop at the first collision found
4449
- :return: <Element 'para' at 0xff825dd007c0>
4502
+ :return: <Element 'para' at 0xff5e2dac07c0>
4450
4503
  """
4451
4504
  ...
4452
4505
 
@@ -5230,6 +5283,21 @@ None( (placo.KinematicsSolver)arg1) -> int :
5230
5283
  """
5231
5284
  ...
5232
5285
 
5286
+ def add_distance_constraint(
5287
+ self,
5288
+ frame_a: str, # std::string
5289
+ frame_b: str, # std::string
5290
+ distance_max: float, # double
5291
+ ) -> DistanceConstraint:
5292
+ """
5293
+ Adds a distance constraint.
5294
+
5295
+ :param str frame_a: frame A
5296
+ :param str frame_b: frame B
5297
+ :param float distance_max: maximum distance between the two frames
5298
+ """
5299
+ ...
5300
+
5233
5301
  def add_distance_task(
5234
5302
  self,
5235
5303
  frame_a: str, # std::string
@@ -5418,6 +5486,21 @@ None( (placo.KinematicsSolver)arg1) -> int :
5418
5486
  """
5419
5487
  ...
5420
5488
 
5489
+ def add_yaw_constraint(
5490
+ self,
5491
+ frame_a: str, # std::string
5492
+ frame_b: str, # std::string
5493
+ alpha_max: float, # double
5494
+ ) -> YawConstraint:
5495
+ """
5496
+ Adds a yaw constraint.
5497
+
5498
+ :param str frame_a: frame A
5499
+ :param str frame_b: frame B
5500
+ :param float alpha_max: angle max for yaw of x-axis in frame b in a
5501
+ """
5502
+ ...
5503
+
5421
5504
  def clear(
5422
5505
  self,
5423
5506
  ) -> None:
@@ -7270,7 +7353,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7270
7353
  """
7271
7354
  Computes all minimum distances between current collision pairs.
7272
7355
 
7273
- :return: <Element 'para' at 0xff825dd7c8b0>
7356
+ :return: <Element 'para' at 0xff5e2daaf4a0>
7274
7357
  """
7275
7358
  ...
7276
7359
 
@@ -7283,7 +7366,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7283
7366
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
7284
7367
 
7285
7368
  :param any frame: the frame for which we want the jacobian
7286
- :return: <Element 'para' at 0xff825dd02180>
7369
+ :return: <Element 'para' at 0xff5e2daafbd0>
7287
7370
  """
7288
7371
  ...
7289
7372
 
@@ -7296,7 +7379,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7296
7379
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
7297
7380
 
7298
7381
  :param any frame: the frame for which we want the jacobian time variation
7299
- :return: <Element 'para' at 0xff825dcf7ef0>
7382
+ :return: <Element 'para' at 0xff5e2dab9f90>
7300
7383
  """
7301
7384
  ...
7302
7385
 
@@ -7534,7 +7617,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
7534
7617
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
7535
7618
 
7536
7619
  :param bool stop_at_first: whether to stop at the first collision found
7537
- :return: <Element 'para' at 0xff825dd73c70>
7620
+ :return: <Element 'para' at 0xff5e2daac680>
7538
7621
  """
7539
7622
  ...
7540
7623
 
@@ -9091,6 +9174,57 @@ None( (placo.WheelTask)arg1) -> float :
9091
9174
  ...
9092
9175
 
9093
9176
 
9177
+ class YawConstraint:
9178
+ def __init__(
9179
+ self,
9180
+ frame_a: any, # pinocchio::FrameIndex
9181
+ frame_b: any, # pinocchio::FrameIndex
9182
+ angle_max: float, # double
9183
+ ) -> any:
9184
+ """
9185
+ Constrains the yaw of frame b in frame a, such that the x-axis of frame b should remain with +- angle_max.
9186
+ """
9187
+ ...
9188
+
9189
+ angle_max: any
9190
+ """
9191
+
9192
+ None( (placo.YawConstraint)arg1) -> float :
9193
+
9194
+ C++ signature :
9195
+ double {lvalue} None(placo::kinematics::YawConstraint {lvalue})
9196
+ """
9197
+
9198
+ def configure(
9199
+ self,
9200
+ name: str, # std::string
9201
+ priority: str = "soft", # std::string
9202
+ weight: float = 1.0, # double
9203
+ ) -> None:
9204
+ """
9205
+ Configures the object.
9206
+
9207
+ :param str name: task name
9208
+ :param str priority: task priority (hard, soft or scaled)
9209
+ :param float weight: task weight
9210
+ """
9211
+ ...
9212
+
9213
+ name: any
9214
+ """
9215
+
9216
+ None( (placo.Prioritized)arg1) -> str :
9217
+
9218
+ C++ signature :
9219
+ std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
9220
+ """
9221
+
9222
+ priority: str
9223
+ """
9224
+ Priority [str]
9225
+ """
9226
+
9227
+
9094
9228
  class boost_type_index:
9095
9229
  def __init__(
9096
9230
  ) -> any:
@@ -9319,4 +9453,4 @@ def wrap_angle(
9319
9453
  ...
9320
9454
 
9321
9455
 
9322
- __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']}
9456
+ __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=3uX4Tel-Jw2vv9hnai71pIHnBrT7w_jiwB75wPUQGag,1709240
2
+ cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=IirkY6F1vNv4sawh_v3hChQZXZGwP9QuFhVaLkcia-M,195874
3
+ cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=RVrXt0bmQG6SB0imF2d6ro76PFVW9OKC8IPdvwDA54Y,8821056
4
+ cmeel.prefix/lib/python3.9/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
+ cmeel.prefix/lib/python3.9/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
+ cmeel.prefix/lib/python3.9/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
+ cmeel.prefix/lib/python3.9/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=UpsNPCAbucsGLzlF7xcG-xAWM966_qp3wtQSt2FQzyw,114
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=NJcUyZy43zwOS6VfuFtU4BbTldoVXuAUBNSucuWeUfo,1706616
2
- cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=u-UjKYF9O43r_XCe5cWQYFfUWqLF_p2Cw_oXHJAQuNE,192856
3
- cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=Dr2YHfJzxda04kqzceere5H7rxUBksrzhbdvdOQEnZg,8720856
4
- cmeel.prefix/lib/python3.9/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
- cmeel.prefix/lib/python3.9/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
- cmeel.prefix/lib/python3.9/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
- cmeel.prefix/lib/python3.9/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=UpsNPCAbucsGLzlF7xcG-xAWM966_qp3wtQSt2FQzyw,114
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