List of all classes, functions and methods in python-igraph
class AbstractVertexDrawer(AbstractDrawer):
Known subclasses: igraph.drawing.vertex.AbstractCairoVertexDrawer
Method | __init__ |
Constructs the vertex drawer and associates it to the given palette. |
Method | draw |
Draws the given vertex. |
Instance Variable | layout |
Undocumented |
Instance Variable | palette |
Undocumented |
igraph.drawing.vertex.AbstractCairoVertexDrawer
Parameters | |
palette | the palette that can be used to map integer color indices to colors when drawing vertices |
layout | the layout of the vertices in the graph being drawn |
igraph.drawing.vertex.DefaultVertexDrawer
Parameters | |
visual_vertex | object specifying the visual properties of the vertex. Its structure is defined by the VisualVertexBuilder of the DefaultGraphDrawer ; see its source code. |
vertex | the raw igraph vertex being drawn |
coords | the X and Y coordinates of the vertex as specified by the layout algorithm, scaled into the bounding box. |