Searched refs:shearfactor (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Doc/library/ |
D | turtle.rst | 167 | :func:`shearfactor` 863 ('shearfactor', 0.0), ('shown', True), ('speed', 9), 1233 .. function:: shearfactor(shear=None) 1237 Set or return the current shearfactor. Shear the turtleshape according to 1238 the given shearfactor shear, which is the tangent of the shear angle. 1240 If shear is not given: return the current shearfactor, i. e. the 1249 >>> turtle.shearfactor(0.5) 1250 >>> turtle.shearfactor() 1333 Modify stretchfactor, shearfactor and tiltangle according to the 1342 >>> turtle.shearfactor(-0.5) [all …]
|
/third_party/python/Lib/ |
D | turtle.py | 2821 def shearfactor(self, shear=None): member in RawTurtle 2842 self.pen(resizemode="user", shearfactor=shear)
|