placo 0.9.4__0-cp310-cp310-macosx_11_0_arm64.whl → 0.9.6__0-cp310-cp310-macosx_11_0_arm64.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
@@ -17,6 +17,7 @@ CubicSpline3D = typing.NewType("CubicSpline3D", None)
17
17
  Distance = typing.NewType("Distance", None)
18
18
  DistanceConstraint = typing.NewType("DistanceConstraint", None)
19
19
  DistanceTask = typing.NewType("DistanceTask", None)
20
+ DummyWalk = typing.NewType("DummyWalk", None)
20
21
  DynamicsCoMTask = typing.NewType("DynamicsCoMTask", None)
21
22
  DynamicsConstraint = typing.NewType("DynamicsConstraint", None)
22
23
  DynamicsFrameTask = typing.NewType("DynamicsFrameTask", None)
@@ -1357,6 +1358,154 @@ None( (placo.Prioritized)arg1) -> str :
1357
1358
  ...
1358
1359
 
1359
1360
 
1361
+ class DummyWalk:
1362
+ T_world_left: any
1363
+ """
1364
+
1365
+ None( (placo.DummyWalk)arg1) -> object :
1366
+
1367
+ C++ signature :
1368
+ Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1369
+ """
1370
+
1371
+ T_world_next: any
1372
+ """
1373
+
1374
+ None( (placo.DummyWalk)arg1) -> object :
1375
+
1376
+ C++ signature :
1377
+ Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1378
+ """
1379
+
1380
+ T_world_right: any
1381
+ """
1382
+
1383
+ None( (placo.DummyWalk)arg1) -> object :
1384
+
1385
+ C++ signature :
1386
+ Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1387
+ """
1388
+
1389
+ def __init__(
1390
+ self,
1391
+ robot: RobotWrapper, # placo::model::RobotWrapper
1392
+ ) -> any:
1393
+ ...
1394
+
1395
+ feet_spacing: any
1396
+ """
1397
+
1398
+ None( (placo.DummyWalk)arg1) -> float :
1399
+
1400
+ C++ signature :
1401
+ double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1402
+ """
1403
+
1404
+ lift_height: any
1405
+ """
1406
+
1407
+ None( (placo.DummyWalk)arg1) -> float :
1408
+
1409
+ C++ signature :
1410
+ double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1411
+ """
1412
+
1413
+ def next_step(
1414
+ self,
1415
+ dx: float, # double
1416
+ dy: float, # double
1417
+ dtheta: float, # double
1418
+ ) -> None:
1419
+ """
1420
+ Produce the next step, change support foot.
1421
+
1422
+ :param float dx: dx
1423
+
1424
+ :param float dy: dy
1425
+
1426
+ :param float dtheta: dtheta
1427
+ """
1428
+ ...
1429
+
1430
+ def reset(
1431
+ self,
1432
+ support_left: bool = False, # bool
1433
+ ) -> None:
1434
+ """
1435
+ Reset the robot with a given support.
1436
+
1437
+ :param bool support_left: whether the first support is left
1438
+ """
1439
+ ...
1440
+
1441
+ robot: any
1442
+ """
1443
+
1444
+ None( (placo.DummyWalk)arg1) -> placo.RobotWrapper :
1445
+
1446
+ C++ signature :
1447
+ placo::model::RobotWrapper {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1448
+ """
1449
+
1450
+ solver: any
1451
+ """
1452
+
1453
+ None( (placo.DummyWalk)arg1) -> placo.KinematicsSolver :
1454
+
1455
+ C++ signature :
1456
+ placo::kinematics::KinematicsSolver {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1457
+ """
1458
+
1459
+ support_left: any
1460
+ """
1461
+
1462
+ None( (placo.DummyWalk)arg1) -> bool :
1463
+
1464
+ C++ signature :
1465
+ bool {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1466
+ """
1467
+
1468
+ trunk_height: any
1469
+ """
1470
+
1471
+ None( (placo.DummyWalk)arg1) -> float :
1472
+
1473
+ C++ signature :
1474
+ double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1475
+ """
1476
+
1477
+ trunk_pitch: any
1478
+ """
1479
+
1480
+ None( (placo.DummyWalk)arg1) -> float :
1481
+
1482
+ C++ signature :
1483
+ double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1484
+ """
1485
+
1486
+ def update(
1487
+ self,
1488
+ t: float, # double
1489
+ ) -> None:
1490
+ """
1491
+ Updates the internal IK.
1492
+
1493
+ :param float t: phase in step from 0 to 1
1494
+ """
1495
+ ...
1496
+
1497
+ def update_T_world_support(
1498
+ self,
1499
+ T_world_support: numpy.ndarray, # Eigen::Affine3d
1500
+ ) -> None:
1501
+ """
1502
+ Update the support to a given world pose.
1503
+
1504
+ :param numpy.ndarray T_world_support:
1505
+ """
1506
+ ...
1507
+
1508
+
1360
1509
  class DynamicsCoMTask:
1361
1510
  A: any
1362
1511
  """
@@ -4276,7 +4425,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4276
4425
  """
4277
4426
  Computes all minimum distances between current collision pairs.
4278
4427
 
4279
- :return: <Element 'para' at 0x10513bb50>
4428
+ :return: <Element 'para' at 0x1076353a0>
4280
4429
  """
4281
4430
  ...
4282
4431
 
@@ -4309,7 +4458,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4309
4458
 
4310
4459
  :param any frame: the frame for which we want the jacobian
4311
4460
 
4312
- :return: <Element 'para' at 0x10513aca0>
4461
+ :return: <Element 'para' at 0x107635e90>
4313
4462
  """
4314
4463
  ...
4315
4464
 
@@ -4323,7 +4472,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4323
4472
 
4324
4473
  :param any frame: the frame for which we want the jacobian time variation
4325
4474
 
4326
- :return: <Element 'para' at 0x105264770>
4475
+ :return: <Element 'para' at 0x107637880>
4327
4476
  """
4328
4477
  ...
4329
4478
 
@@ -4635,7 +4784,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
4635
4784
 
4636
4785
  :param bool stop_at_first: whether to stop at the first collision found
4637
4786
 
4638
- :return: <Element 'para' at 0x105139760>
4787
+ :return: <Element 'para' at 0x107634c70>
4639
4788
  """
4640
4789
  ...
4641
4790
 
@@ -5799,7 +5948,7 @@ None( (placo.KinematicsSolver)arg1) -> placo.Problem :
5799
5948
  None( (placo.KinematicsSolver)arg1) -> placo.RobotWrapper :
5800
5949
 
5801
5950
  C++ signature :
5802
- placo::model::RobotWrapper None(placo::kinematics::KinematicsSolver)
5951
+ placo::model::RobotWrapper {lvalue} None(placo::kinematics::KinematicsSolver)
5803
5952
  """
5804
5953
 
5805
5954
  scale: any
@@ -7573,7 +7722,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7573
7722
  """
7574
7723
  Computes all minimum distances between current collision pairs.
7575
7724
 
7576
- :return: <Element 'para' at 0x105195260>
7725
+ :return: <Element 'para' at 0x107585d00>
7577
7726
  """
7578
7727
  ...
7579
7728
 
@@ -7587,7 +7736,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7587
7736
 
7588
7737
  :param any frame: the frame for which we want the jacobian
7589
7738
 
7590
- :return: <Element 'para' at 0x105195d50>
7739
+ :return: <Element 'para' at 0x1075867f0>
7591
7740
  """
7592
7741
  ...
7593
7742
 
@@ -7601,7 +7750,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7601
7750
 
7602
7751
  :param any frame: the frame for which we want the jacobian time variation
7603
7752
 
7604
- :return: <Element 'para' at 0x105197740>
7753
+ :return: <Element 'para' at 0x107594220>
7605
7754
  """
7606
7755
  ...
7607
7756
 
@@ -7842,7 +7991,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
7842
7991
 
7843
7992
  :param bool stop_at_first: whether to stop at the first collision found
7844
7993
 
7845
- :return: <Element 'para' at 0x105194b30>
7994
+ :return: <Element 'para' at 0x1075855d0>
7846
7995
  """
7847
7996
  ...
7848
7997
 
@@ -9750,4 +9899,4 @@ def wrap_angle(
9750
9899
  ...
9751
9900
 
9752
9901
 
9753
- __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']}
9902
+ __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::humanoid': ['DummyWalk', 'Footstep', 'FootstepsPlanner', 'FootstepsPlannerNaive', 'FootstepsPlannerRepetitive', 'HumanoidParameters', 'HumanoidRobot', 'LIPM', 'LIPMTrajectory', 'Support', 'SwingFoot', 'SwingFootCubic', 'SwingFootCubicTrajectory', 'SwingFootQuintic', 'SwingFootQuinticTrajectory', 'SwingFootTrajectory', 'WPGTrajectory', 'WPGTrajectoryPart', 'WalkPatternGenerator', 'WalkTasks'], 'placo::problem': ['Expression', 'Integrator', 'IntegratorTrajectory', 'PolygonConstraint', 'Problem', 'ProblemConstraint', 'ProblemPolynom', 'QPError', 'Sparsity', 'SparsityInterval', 'Variable']}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: placo
3
- Version: 0.9.4
3
+ Version: 0.9.6
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.dylib,sha256=93hVG1I66hgAJMT8DXzvvKNsa2C2gLJmUhExQx4zQKI,1505632
2
+ cmeel.prefix/lib/python3.10/site-packages/placo.pyi,sha256=Fg_Ffv18a-s6o3JD8XkV8xybvtDdfp-cEj1LfiJ29hY,201519
3
+ cmeel.prefix/lib/python3.10/site-packages/placo.so,sha256=FJ9iYwC5SoYbomTY1mcqIkNw-1pCNcc5QHsEyxjDSwM,6750184
4
+ cmeel.prefix/lib/python3.10/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
+ cmeel.prefix/lib/python3.10/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
+ cmeel.prefix/lib/python3.10/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
+ cmeel.prefix/lib/python3.10/site-packages/placo_utils/visualization.py,sha256=MiUn91MtezIpaP-bBj5g5PqVQNbDWdKkZxbvS_nu93I,8330
8
+ placo-0.9.6.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
9
+ placo-0.9.6.dist-info/METADATA,sha256=be_NGnf2R_TP5BsRiwdaNeL7S2kxoImDvKC6lmg6juE,2628
10
+ placo-0.9.6.dist-info/WHEEL,sha256=wZPM3usBfU0VeMSc3DCLlfcN5EuhQgo5t1AEM8-WQe0,111
11
+ placo-0.9.6.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
+ placo-0.9.6.dist-info/RECORD,,
@@ -1,12 +0,0 @@
1
- cmeel.prefix/lib/liblibplaco.dylib,sha256=ZLd5L84DTaVOOETj4cXlhM0PpK_i36G-eWosaItNJEs,1504608
2
- cmeel.prefix/lib/python3.10/site-packages/placo.pyi,sha256=S7R5P_R24-POg3zGnRGqLo6Z6_SsJ5m3aB1OLG2O-ro,198669
3
- cmeel.prefix/lib/python3.10/site-packages/placo.so,sha256=1YHp1zRgz0MUaZkKUuW2JZgbn3CBnJlFllgeoU7kFfY,6677416
4
- cmeel.prefix/lib/python3.10/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
- cmeel.prefix/lib/python3.10/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
- cmeel.prefix/lib/python3.10/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
- cmeel.prefix/lib/python3.10/site-packages/placo_utils/visualization.py,sha256=MiUn91MtezIpaP-bBj5g5PqVQNbDWdKkZxbvS_nu93I,8330
8
- placo-0.9.4.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
9
- placo-0.9.4.dist-info/METADATA,sha256=vb4ibUMVg2bNQzde1RsUzBy7pgahnehX8BQZc_o_6bo,2628
10
- placo-0.9.4.dist-info/WHEEL,sha256=wZPM3usBfU0VeMSc3DCLlfcN5EuhQgo5t1AEM8-WQe0,111
11
- placo-0.9.4.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
- placo-0.9.4.dist-info/RECORD,,
File without changes