Lines Matching refs:pen
139 | :func:`pen`
349 Move turtle to an absolute position. If the pen is down, draw line. Do
480 is not a full circle, one endpoint of the arc is the current pen
804 Pull the pen down -- drawing when moving.
811 Pull the pen up -- no drawing when moving.
831 .. function:: pen(pen=None, **pendict)
833 :param pen: a dictionary with some or all of the below listed keys
836 Return or set the pen's attributes in a "pen-dictionary" with the following
850 This dictionary can be used as argument for a subsequent call to :func:`pen`
851 to restore the former pen-state. Moreover one or more of these attributes
852 can be provided as keyword-arguments. This can be used to set several pen
859 >>> turtle.pen(fillcolor="black", pencolor="red", pensize=10)
860 >>> sorted(turtle.pen().items())
865 >>> penstate=turtle.pen()
868 >>> sorted(turtle.pen().items())[:3]
870 >>> turtle.pen(penstate, fillcolor="green")
871 >>> sorted(turtle.pen().items())[:3]
876 Return ``True`` if pen is down, ``False`` if it's up.
1107 font. If *move* is true, the pen is moved to the bottom-right corner of the
1212 Return or set the pen's attributes x/y-stretchfactors and/or outline. Set
1432 the screen thereby producing handdrawings (if pen is down).
2232 Pull the pen up -- no drawing when moving.
2265 Pull the pen up -- no drawing when moving.