Home | History | Annotate | Download | only in Lib

Lines Matching refs:tilt

137         'speed', 'st', 'stamp', 'tilt', 'tiltangle', 'towards',
2356 "tilt" : number
2393 "tilt" : self._tilt
2451 if "tilt" in p:
2452 self._tilt = p["tilt"]
2453 if "stretchfactor" in p or "tilt" in p or "shearfactor" in p:
2849 regardless of its current tilt-angle. DO NOT change the turtle's
2863 tilt = -angle * self._degreesPerAU * self._angleOrient
2864 tilt = (tilt * math.pi / 180.0) % (2*math.pi)
2865 self.pen(resizemode="user", tilt=tilt)
2868 """Set or return the current tilt-angle.
2873 regardless of its current tilt-angle. DO NOT change the turtle's
2875 If angle is not given: return the current tilt-angle, i. e. the angle
2884 >>> turtle.tilt(45)
2888 tilt = -self._tilt * (180.0/math.pi) * self._angleOrient
2889 return (tilt / self._degreesPerAU) % self._fullcircle
2893 def tilt(self, angle):
2899 Rotate the turtleshape by angle from its current tilt-angle,
2905 >>> turtle.tilt(30)
2907 >>> turtle.tilt(30)
2996 its shape, resizemode, stretch and tilt etc."""