Lines Matching refs:tilt
138 'speed', 'st', 'stamp', 'tilt', 'tiltangle', 'towards',
2357 "tilt" : number
2394 "tilt" : self._tilt
2452 if "tilt" in p:
2453 self._tilt = p["tilt"]
2454 if "stretchfactor" in p or "tilt" in p or "shearfactor" in p:
2850 regardless of its current tilt-angle. DO NOT change the turtle's
2872 """Set or return the current tilt-angle.
2877 regardless of its current tilt-angle. DO NOT change the turtle's
2879 If angle is not given: return the current tilt-angle, i. e. the angle
2903 tilt = -math.degrees(self._tilt) * self._angleOrient
2904 return (tilt / self._degreesPerAU) % self._fullcircle
2906 tilt = -angle * self._degreesPerAU * self._angleOrient
2907 tilt = math.radians(tilt) % math.tau
2908 self.pen(resizemode="user", tilt=tilt)
2910 def tilt(self, angle):
2916 Rotate the turtleshape by angle from its current tilt-angle,
2922 >>> turtle.tilt(30)
2924 >>> turtle.tilt(30)
3013 its shape, resizemode, stretch and tilt etc."""