forked from rai-opensource/spatialmath-python
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathclasses.dot
More file actions
25 lines (25 loc) · 661 Bytes
/
classes.dot
File metadata and controls
25 lines (25 loc) · 661 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];
SMUserList -> "collections.UserList"
SMPose -> SMUserList
SO2 -> SMPose
SO3 -> SMPose
SE2 -> SO2
SE3 -> SO3
SMTwist -> SMUserList
Twist2 -> SMTwist
Twist3 -> SMTwist
Quaternion -> SMUserList
UnitQuaternion -> Quaternion
Plucker -> SMUserList
SpatialVector -> SMUserList
SpatialM6 -> SpatialVector
SpatialF6 -> SpatialVector
SpatialVelocity -> SpatialM6
SpatialAcceleration -> SpatialM6
SpatialMomentum -> SpatialF6
SpatialForce -> SpatialF6
SpatialInertia -> SMUserList
}