This documentation is for the free plugin Py4D in CINEMA 4D R11.5 and not for the C4DSDK of Python in CINEMA 4D R12. For R12, please visit PluginCafe.com
The following simplified UML diagrams just show you the most important associations of the classes.
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