class documentation

class PlotlyPolygonDrawer:

View In Hierarchy

Class that is used to draw polygons in matplotlib.

The corner points of the polygon can be set by the points property of the drawer, or passed at construction time. Most drawing methods in this class also have an extra points argument that can be used to override the set of points in the points property.

Method __init__ Constructs a new polygon drawer that draws on the given Matplotlib axes.
Method draw Draws a polygon to the associated axes.
Instance Variable context Undocumented
def __init__(self, fig):

Constructs a new polygon drawer that draws on the given Matplotlib axes.

Parameters
figthe plotly Figure to draw on
def draw(self, points, corner_radius=0, **kwds):

Draws a polygon to the associated axes.

Parameters
pointsthe coordinates of the corners of the polygon, in clockwise or counter-clockwise order, or None if we are about to use the points property of the class.
corner_radiusif zero, an ordinary polygon will be drawn. If positive, the corners of the polygon will be rounded with the given radius.
**kwdsUndocumented
context =

Undocumented