当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python turtle.shapesize用法及代码示例


用法:

turtle.shapesize(stretch_wid=None, stretch_len=None, outline=None)
turtle.turtlesize(stretch_wid=None, stretch_len=None, outline=None)

参数

  • stretch_wid- 正数
  • stretch_len- 正数
  • outline- 正数

返回或设置笔的属性 x/y-stretchfactors 和/或轮廓。将调整大小模式设置为“user”。当且仅当 resizemode 设置为 “user” 时, turtle 将根据其拉伸因子拉伸显示:stretch_wid 是垂直于其方向的拉伸因子,stretch_len 是其方向的拉伸因子,outline 确定宽度形状的轮廓。

>>> turtle.shapesize()
(1.0, 1.0, 1)
>>> turtle.resizemode("user")
>>> turtle.shapesize(5, 5, 12)
>>> turtle.shapesize()
(5, 5, 12)
>>> turtle.shapesize(outline=8)
>>> turtle.shapesize()
(5, 5, 8)

相关用法


注:本文由纯净天空筛选整理自python.org大神的英文原创作品 turtle.shapesize。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。