Geometry
AbsolutePose
Bases: Pose
Absolute pose of the robot in 3D space.
Source code in mbodied/types/geometry.py
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
|
LocationAngle
Bases: Pose3D
Alias for Pose3D. A 2D+1 space representing x, y, and theta.
Source code in mbodied/types/geometry.py
21 22 23 24 |
|
Pose
Bases: Pose6D
Alias for Pose6D. A movement for a 6D space representing x, y, z, roll, pitch, and yaw.
Source code in mbodied/types/geometry.py
56 57 58 59 |
|
Pose3D
Bases: Motion
Action for a 2D+1 space representing x, y, and theta.
Source code in mbodied/types/geometry.py
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
|
Pose6D
Bases: Motion
Movement for a 6D space representing x, y, z, roll, pitch, and yaw.
Source code in mbodied/types/geometry.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
|
RelativePose
Bases: Pose
Relative pose of the robot in 3D space.
Source code in mbodied/types/geometry.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
|