Diagramm

The following simplified UML diagrams just show you the most important associations of the classes.

Example

Is the graph for:

#Just a superclass
class Superclass():
    pass

#first subclass level
class Subclass(Superclass):
    pass

#Second subclass level
class AnotherSubclass(Subclass):
    pass

#Has/Is no Superclass
class SimpleClass():
    pass

module - c4d

Table Of Contents