Home
last modified time | relevance | path

Searched refs:shearfactor (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Doc/library/
Dturtle.rst167 | :func:`shearfactor`
831 ('shearfactor', 0.0), ('shown', True), ('speed', 9),
1183 .. function:: shearfactor(shear=None)
1187 Set or return the current shearfactor. Shear the turtleshape according to
1188 the given shearfactor shear, which is the tangent of the shear angle.
1190 If shear is not given: return the current shearfactor, i. e. the
1198 >>> turtle.shearfactor(0.5)
1199 >>> turtle.shearfactor()
1279 Modify stretchfactor, shearfactor and tiltangle according to the
1287 >>> turtle.shearfactor(-0.5)
[all …]
/external/python/cpython3/Lib/
Dturtle.py2820 def shearfactor(self, shear=None): member in RawTurtle
2841 self.pen(resizemode="user", shearfactor=shear)