placo 0.9.4__0-cp39-cp39-macosx_10_9_x86_64.whl → 0.9.5__0-cp39-cp39-macosx_10_9_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
@@ -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
  """
@@ -4272,7 +4421,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4272
4421
  """
4273
4422
  Computes all minimum distances between current collision pairs.
4274
4423
 
4275
- :return: <Element 'para' at 0x103d5bb80>
4424
+ :return: <Element 'para' at 0x10e9b2d60>
4276
4425
  """
4277
4426
  ...
4278
4427
 
@@ -4305,7 +4454,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4305
4454
 
4306
4455
  :param any frame: the frame for which we want the jacobian
4307
4456
 
4308
- :return: <Element 'para' at 0x103d626d0>
4457
+ :return: <Element 'para' at 0x10e9cd8b0>
4309
4458
  """
4310
4459
  ...
4311
4460
 
@@ -4319,7 +4468,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4319
4468
 
4320
4469
  :param any frame: the frame for which we want the jacobian time variation
4321
4470
 
4322
- :return: <Element 'para' at 0x103d66ef0>
4471
+ :return: <Element 'para' at 0x10e9c1360>
4323
4472
  """
4324
4473
  ...
4325
4474
 
@@ -4631,7 +4780,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
4631
4780
 
4632
4781
  :param bool stop_at_first: whether to stop at the first collision found
4633
4782
 
4634
- :return: <Element 'para' at 0x103d5b450>
4783
+ :return: <Element 'para' at 0x10e9b2630>
4635
4784
  """
4636
4785
  ...
4637
4786
 
@@ -5791,7 +5940,7 @@ None( (placo.KinematicsSolver)arg1) -> placo.Problem :
5791
5940
  None( (placo.KinematicsSolver)arg1) -> placo.RobotWrapper :
5792
5941
 
5793
5942
  C++ signature :
5794
- placo::model::RobotWrapper None(placo::kinematics::KinematicsSolver)
5943
+ placo::model::RobotWrapper {lvalue} None(placo::kinematics::KinematicsSolver)
5795
5944
  """
5796
5945
 
5797
5946
  scale: any
@@ -7565,7 +7714,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7565
7714
  """
7566
7715
  Computes all minimum distances between current collision pairs.
7567
7716
 
7568
- :return: <Element 'para' at 0x102e27e00>
7717
+ :return: <Element 'para' at 0x10da7d9f0>
7569
7718
  """
7570
7719
  ...
7571
7720
 
@@ -7579,7 +7728,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7579
7728
 
7580
7729
  :param any frame: the frame for which we want the jacobian
7581
7730
 
7582
- :return: <Element 'para' at 0x102e2a950>
7731
+ :return: <Element 'para' at 0x10da81540>
7583
7732
  """
7584
7733
  ...
7585
7734
 
@@ -7593,7 +7742,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7593
7742
 
7594
7743
  :param any frame: the frame for which we want the jacobian time variation
7595
7744
 
7596
- :return: <Element 'para' at 0x102e32400>
7745
+ :return: <Element 'para' at 0x10da86f90>
7597
7746
  """
7598
7747
  ...
7599
7748
 
@@ -7834,7 +7983,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
7834
7983
 
7835
7984
  :param bool stop_at_first: whether to stop at the first collision found
7836
7985
 
7837
- :return: <Element 'para' at 0x102e276d0>
7986
+ :return: <Element 'para' at 0x10da7d2c0>
7838
7987
  """
7839
7988
  ...
7840
7989
 
@@ -9742,4 +9891,4 @@ def wrap_angle(
9742
9891
  ...
9743
9892
 
9744
9893
 
9745
- __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']}
9894
+ __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.5
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=U8ft7Ug_X2SjjRJ2F53tAaiCwEgLpPywD6MSrLozv_w,1860184
2
+ cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=84IhteKxsjWWNl7hQ_VAtGD38oO0Xu3PLn26tfLZ1sg,201443
3
+ cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=sX54wiG-cie2seMBtFMpI0iQHYeUAJplxamSTXiaISg,7194144
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.5.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
9
+ placo-0.9.5.dist-info/METADATA,sha256=pNcn38rwrk9kss2D1sHX4snCWclHrA3yhUB-XOCX3R4,2628
10
+ placo-0.9.5.dist-info/WHEEL,sha256=SPuKCq7g91a_0Yde2aZNKktl1nqSUqyoo9dFJq3wVNQ,110
11
+ placo-0.9.5.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
+ placo-0.9.5.dist-info/RECORD,,
@@ -1,12 +0,0 @@
1
- cmeel.prefix/lib/liblibplaco.dylib,sha256=I51P6ZtrXn8rTRRvQaUe9aLDtqwp0aMnGKr0JC2n3rY,1859144
2
- cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=Ncn2MrSPqLCTirV1R0LpB6cr_TAwDs_R-O1jlu_kZMc,198593
3
- cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=e8WaIPJDRCp2to9-4MJCLpOf1vf8RaardoXe49UWBGc,7096704
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.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=SPuKCq7g91a_0Yde2aZNKktl1nqSUqyoo9dFJq3wVNQ,110
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