Home
last modified time | relevance | path

Searched refs:pensize (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Lib/turtledemo/
Drosette.py43 p.pensize(3)
Dcolormixer.py12 self.pensize(10)
Dclock.py45 pensize(7)
Dforest.py38 t.pensize( size * widthfactor )
/third_party/python/Doc/library/
Dturtle.rst138 | :func:`pensize` | :func:`width`
515 not given, the maximum of pensize+4 and 2*pensize is used.
814 .. function:: pensize(width=None)
821 thickness. If no argument is given, the current pensize is returned.
826 >>> turtle.pensize()
828 >>> turtle.pensize(10) # from here on lines of width 10 are drawn
843 * "pensize": positive number
859 >>> turtle.pen(fillcolor="black", pencolor="red", pensize=10)
862 ('pendown', True), ('pensize', 10), ('resizemode', 'noresize'),
1039 ... turtle.pensize(5)
[all …]
/third_party/python/Lib/
Dturtle.py2073 def pensize(self, width=None): member in TPen
2093 self.pen(pensize=width)
2473 width = pensize
3393 self.pensize(size)
4044 pensize(3)
4059 pensize(3)
4108 turtle.pensize(2)
/third_party/flutter/skia/third_party/externals/sdl/src/video/windows/
DSDL_windowskeyboard.c1319 DrawRect(HDC hdc, int left, int top, int right, int bottom, int pensize) in DrawRect() argument
1322 const int penadjust = (int)SDL_floor(pensize / 2.0f - 0.5f); in DrawRect()
1323 left += pensize / 2; in DrawRect()
1324 top += pensize / 2; in DrawRect()