draw_polygon method

draw_polygon

Draws a polygon.

def draw_polygon(self, x_points, y_points, n_points):
    ...
ParameterTypeDescription
x_pointslistX coordinates of points.
y_pointslistY coordinate of points.
n_pointsintThe number of points.

draw_polygon

Draws a poligone.

def draw_polygon(self, x_points, y_points, n_points):
    ...
ParameterTypeDescription
x_pointslistX coordinates of points.
y_pointslistY coordinate of points.
n_pointsintThe number of points.

See Also