RendererType#
Qualified name: manim.constants.RendererType
- class RendererType(value)[source]#
Bases:
EnumAn enumeration of all renderer types that can be assigned to the
config.rendererattribute.Manim’s configuration allows assigning string values to the renderer setting, the values are then replaced by the corresponding enum object. In other words, you can run:
config.renderer = "opengl"
and checking the renderer afterwards reveals that the attribute has assumed the value:
<RendererType.OPENGL: 'opengl'>
Attributes
- CAIRO = 'cairo'#
A renderer based on the cairo backend.
- OPENGL = 'opengl'#
An OpenGL-based renderer.