用法:
turtle.towards(x, y=None)
- x:- 一个数字或数字对/向量或 turtle 实例
- y:- 一个数字,如果
x
是一个数字,否则None
参数:
返回从 turtle 位置到由 (x,y)、向量或其他 turtle 指定的位置的线之间的角度。这取决于 turtle 的起始方向,它取决于模式 - “standard”/”world” 或 “logo”。
>>> turtle.goto(10, 10) >>> turtle.towards(0,0) 225.0
相关用法
- Python turtle.towards()用法及代码示例
- Python turtle.tracer用法及代码示例
- Python turtle.tilt()用法及代码示例
- Python turtle.tracer()用法及代码示例
- Python turtle.textinput()用法及代码示例
- Python turtle.title()用法及代码示例
- Python turtle.tilt用法及代码示例
- Python turtle.turtlesize()用法及代码示例
- Python turtle.tiltangle用法及代码示例
- 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.towards。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。