placo 0.9.4__0-cp313-cp313-macosx_11_0_arm64.whl → 0.9.6__0-cp313-cp313-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
  """
@@ -4280,7 +4429,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4280
4429
  """
4281
4430
  Computes all minimum distances between current collision pairs.
4282
4431
 
4283
- :return: <Element 'para' at 0x1078d2930>
4432
+ :return: <Element 'para' at 0x1080138d0>
4284
4433
  """
4285
4434
  ...
4286
4435
 
@@ -4313,7 +4462,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4313
4462
 
4314
4463
  :param any frame: the frame for which we want the jacobian
4315
4464
 
4316
- :return: <Element 'para' at 0x1078d2610>
4465
+ :return: <Element 'para' at 0x108010a40>
4317
4466
  """
4318
4467
  ...
4319
4468
 
@@ -4327,7 +4476,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4327
4476
 
4328
4477
  :param any frame: the frame for which we want the jacobian time variation
4329
4478
 
4330
- :return: <Element 'para' at 0x107872390>
4479
+ :return: <Element 'para' at 0x107fc0400>
4331
4480
  """
4332
4481
  ...
4333
4482
 
@@ -4639,7 +4788,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
4639
4788
 
4640
4789
  :param bool stop_at_first: whether to stop at the first collision found
4641
4790
 
4642
- :return: <Element 'para' at 0x1078d0040>
4791
+ :return: <Element 'para' at 0x1080126b0>
4643
4792
  """
4644
4793
  ...
4645
4794
 
@@ -5807,7 +5956,7 @@ None( (placo.KinematicsSolver)arg1) -> placo.Problem :
5807
5956
  None( (placo.KinematicsSolver)arg1) -> placo.RobotWrapper :
5808
5957
 
5809
5958
  C++ signature :
5810
- placo::model::RobotWrapper None(placo::kinematics::KinematicsSolver)
5959
+ placo::model::RobotWrapper {lvalue} None(placo::kinematics::KinematicsSolver)
5811
5960
  """
5812
5961
 
5813
5962
  scale: any
@@ -7581,7 +7730,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7581
7730
  """
7582
7731
  Computes all minimum distances between current collision pairs.
7583
7732
 
7584
- :return: <Element 'para' at 0x107824450>
7733
+ :return: <Element 'para' at 0x107f60e00>
7585
7734
  """
7586
7735
  ...
7587
7736
 
@@ -7595,7 +7744,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7595
7744
 
7596
7745
  :param any frame: the frame for which we want the jacobian
7597
7746
 
7598
- :return: <Element 'para' at 0x107824ef0>
7747
+ :return: <Element 'para' at 0x107f618a0>
7599
7748
  """
7600
7749
  ...
7601
7750
 
@@ -7609,7 +7758,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7609
7758
 
7610
7759
  :param any frame: the frame for which we want the jacobian time variation
7611
7760
 
7612
- :return: <Element 'para' at 0x107826660>
7761
+ :return: <Element 'para' at 0x107f63010>
7613
7762
  """
7614
7763
  ...
7615
7764
 
@@ -7850,7 +7999,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
7850
7999
 
7851
8000
  :param bool stop_at_first: whether to stop at the first collision found
7852
8001
 
7853
- :return: <Element 'para' at 0x10781bbf0>
8002
+ :return: <Element 'para' at 0x107f605e0>
7854
8003
  """
7855
8004
  ...
7856
8005
 
@@ -9758,4 +9907,4 @@ def wrap_angle(
9758
9907
  ...
9759
9908
 
9760
9909
 
9761
- __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']}
9910
+ __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=jUTxFMw8wASWiQkzGV_qM2GSP4w994uOsBStmtuE0ss,1505632
2
+ cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=ZAIKIos4Mxkha-y4UF7_YReDWPPl_XDtbQVwdow3neU,201597
3
+ cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=RHnUpylU5vDsiW_qHbD6YvAOKa64aCImv2WZXMoLjpM,6822520
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.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=IWoAZqI87Rq-2ZoZusEVHAVYLTm9LfdBAzXxSj7HXiY,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=skadp1nuVmde9JfF7OJJAKwcbUW-ydMnB58RLAiQQDI,1504608
2
- cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=psGQtCqWBjji4vOsKG72stObRelWk3pX7ejyAgo9n3o,198747
3
- cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=_qnazbQCy9Mvq3Fugtml_zsHHDZenaRbSoK1iIpNXBY,6749560
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.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=IWoAZqI87Rq-2ZoZusEVHAVYLTm9LfdBAzXxSj7HXiY,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