diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2020-01-27 23:41:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-27 23:41:18 (GMT) |
commit | 2824c45a0a020f12f27da7e7162e8636c21bf869 (patch) | |
tree | 5d460f00775271a3de6849a9d717f50eba1fea7d /Doc/library/turtle.rst | |
parent | a27831351873bd7eff10863353d475c29fb0d7bb (diff) | |
download | cpython-2824c45a0a020f12f27da7e7162e8636c21bf869.zip cpython-2824c45a0a020f12f27da7e7162e8636c21bf869.tar.gz cpython-2824c45a0a020f12f27da7e7162e8636c21bf869.tar.bz2 |
bpo-39392: Turtle overlap fill depends on OS (#18223)
Whether or not overlap regions for self-intersecting polygons
or multiple shapes are filled depends on the operating system graphics,
typeof overlap, and number of overlaps.
Diffstat (limited to 'Doc/library/turtle.rst')
-rw-r--r-- | Doc/library/turtle.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst index 7f9f0c3..fed8504 100644 --- a/Doc/library/turtle.rst +++ b/Doc/library/turtle.rst @@ -1051,6 +1051,11 @@ Filling Fill the shape drawn after the last call to :func:`begin_fill`. + Whether or not overlap regions for self-intersecting polygons + or multiple shapes are filled depends on the operating system graphics, + type of overlap, and number of overlaps. For example, the Turtle star + above may be either all yellow or have some white regions. + .. doctest:: :skipif: _tkinter is None |