用法:
turtle.tiltangle(angle=None)
angle- 一个数字(可选)
参数:
设置或返回当前的tilt-angle。如果给定了角度,则旋转 turtle 形状以指向角度指定的方向,而不管其当前的tilt-angle。
not
改变 turtle 的航向(运动方向)。如果没有给出角度:返回当前的tilt-angle,即。 e. turtle 形状的方向和 turtle 的航向(它的运动方向)之间的角度。>>> turtle.reset() >>> turtle.shape("circle") >>> turtle.shapesize(5,2) >>> turtle.tilt(45) >>> turtle.tiltangle() 45.0
相关用法
- Python turtle.tilt()用法及代码示例
- Python turtle.tilt用法及代码示例
- Python turtle.title()用法及代码示例
- Python turtle.tracer用法及代码示例
- Python turtle.tracer()用法及代码示例
- Python turtle.textinput()用法及代码示例
- Python turtle.towards用法及代码示例
- Python turtle.turtlesize()用法及代码示例
- Python turtle.towards()用法及代码示例
- Python turtle.write_docstringdict()用法及代码示例
- Python turtle.reset用法及代码示例
- Python turtle.delay()用法及代码示例
- Python turtle.write()用法及代码示例
- Python turtle.getpen()用法及代码示例
- Python turtle.isvisible用法及代码示例
- Python turtle.onkey用法及代码示例
- Python turtle.end_fill()用法及代码示例
- Python turtle.undo用法及代码示例
- Python turtle.onscreenclick()用法及代码示例
- Python turtle.speed()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 turtle.tiltangle。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。