Home | History | Annotate | Download | only in lib-tk

Lines Matching refs:tilt

136         'speed', 'st', 'stamp', 'tilt', 'tiltangle', 'towards', 'tracer',
2269 "tilt" : number
2305 "tilt" : self._tilt
2361 if "tilt" in p:
2362 self._tilt = p["tilt"]
2729 regardless of its current tilt-angle. DO NOT change the turtle's
2743 tilt = -angle * self._degreesPerAU * self._angleOrient
2744 tilt = (tilt * math.pi / 180.0) % (2*math.pi)
2745 self.pen(resizemode="user", tilt=tilt)
2748 """Return the current tilt-angle.
2752 Return the current tilt-angle, i. e. the angle between the
2759 >>> turtle.tilt(45)
2762 tilt = -self._tilt * (180.0/math.pi) * self._angleOrient
2763 return (tilt / self._degreesPerAU) % self._fullcircle
2765 def tilt(self, angle):
2771 Rotate the turtleshape by angle from its current tilt-angle,
2777 >>> turtle.tilt(30)
2779 >>> turtle.tilt(30)
2798 its shape, resizemode, stretch and tilt etc."""