MAXON API Manual¶
Clear and consistent naming convention.
Modularity concept.
Consistent object creation.
Error handling; in Python, a exception is raised when something went wrong.
Warning
Currently the Python MAXON API, does not support named parameters. It’s a know issue. So all parameters need to be filled.
Frameworks¶
A framework includes MAXON API components (interfaces, references, data types, etc…) for a specific feature e.g. the volume framework for the usage of OpenVDB based volume data.
See also
Interfaces¶
Note
In the MAXON API, interface classes end with the suffix Interface e.g. VolumeInterface.
Warning
Warning
See also
References¶
Note
See also
Data Types¶
maxon.Int32,maxon.Int64,maxon.Intfor int
maxon.Float32,maxon.Float64,maxon.Floatfor float
maxon.BaseArrayfor list
maxon.Tuplefor tuple
maxon.MaxonConvert().See also
Registries¶
maxon.Id and the entry can be anything e.g. a class (Interface,Reference, refistry, etc…), an attribute, a constant value, etc…maxon.Loggers is a registry that store all the different loggers available.Warning
See also