MCPcopy Index your code
hub / github.com/RustPython/RustPython / create_polygon

Method create_polygon

Lib/tkinter/__init__.py:3002–3004  ·  view source on GitHub ↗

Create polygon with coordinates x1,y1,...,xn,yn.

(self, *args, **kw)

Source from the content-addressed store, hash-verified

3000 return self._create('oval', args, kw)
3001
3002 def create_polygon(self, *args, **kw):
3003 """Create polygon with coordinates x1,y1,...,xn,yn."""
3004 return self._create('polygon', args, kw)
3005
3006 def create_rectangle(self, *args, **kw):
3007 """Create rectangle with coordinates x1,y1,x2,y2."""

Callers

nothing calls this directly

Calls 1

_createMethod · 0.95

Tested by

no test coverage detected