forked from rai-opensource/spatialmath-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclasses.dot
More file actions
25 lines (25 loc) · 704 Bytes
/
classes.dot
File metadata and controls
25 lines (25 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# dot -Tpdf classes.dot > classes.pdf ; open classes.pdf
# dot -Tpng -Gdpi=150 -Nfontsize=20 -Nfontname=Roboto classes.dot > classes.png
digraph G {
graph [rankdir=BT];
BasePoseList -> "collections.UserList"
BasePoseMatrix -> BasePoseList
SO2 -> BasePoseMatrix
SO3 -> BasePoseMatrix
SE2 -> SO2
SE3 -> SO3
BaseTwist -> BasePoseList
Twist2 -> BaseTwist
Twist3 -> BaseTwist
Quaternion -> BasePoseList
UnitQuaternion -> Quaternion
Line3 -> BasePoseList
SpatialVector -> BasePoseList
SpatialM6 -> SpatialVector
SpatialF6 -> SpatialVector
SpatialVelocity -> SpatialM6
SpatialAcceleration -> SpatialM6
SpatialMomentum -> SpatialF6
SpatialForce -> SpatialF6
SpatialInertia -> BasePoseList
}