Skip to content

Commit

Permalink
[gym/common] Add support of multi-frame quantities. (#804)
Browse files Browse the repository at this point in the history
* [gym/common] Add support of multi-frame quantities.
* [gym/common] Add mean quaternion quantity.
* [gym/common] Add foot odometry pose quantity.
  • Loading branch information
duburcqa committed Jun 18, 2024
1 parent 0cb13f4 commit 64d9e06
Show file tree
Hide file tree
Showing 6 changed files with 662 additions and 134 deletions.
12 changes: 10 additions & 2 deletions python/gym_jiminy/common/gym_jiminy/common/quantities/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@
UnaryOpQuantity,
BinaryOpQuantity)
from .generic import (FrameEulerAngles,
MultiFrameEulerAngles,
FrameXYZQuat,
MultiFrameXYZQuat,
MultiFrameMeanXYZQuat,
AverageFrameSpatialVelocity,
ActuatedJointPositions)
from .locomotion import (OdometryPose,
from .locomotion import (BaseOdometryPose,
FootOdometryPose,
AverageOdometryVelocity,
CenterOfMass,
CapturePoint,
Expand All @@ -24,8 +28,12 @@
'BinaryOpQuantity',
'ActuatedJointPositions',
'FrameEulerAngles',
'MultiFrameEulerAngles',
'FrameXYZQuat',
'OdometryPose',
'MultiFrameXYZQuat',
'MultiFrameMeanXYZQuat',
'BaseOdometryPose',
'FootOdometryPose',
'AverageFrameSpatialVelocity',
'AverageOdometryVelocity',
'CenterOfMass',
Expand Down
Loading

0 comments on commit 64d9e06

Please sign in to comment.