用法:
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 turtle.shape()用法及代码示例
- Python turtle.shape用法及代码示例
- Python turtle.shapetransform()用法及代码示例
- Python turtle.shapetransform用法及代码示例
- Python turtle.showturtle()用法及代码示例
- Python turtle.shearfactor()用法及代码示例
- Python turtle.shearfactor用法及代码示例
- Python turtle.speed()用法及代码示例
- Python turtle.setworldcoordinates()用法及代码示例
- Python turtle.setx()用法及代码示例
- Python turtle.settiltangle()用法及代码示例
- Python turtle.screensize用法及代码示例
- Python turtle.setup用法及代码示例
- Python turtle.sety用法及代码示例
- Python turtle.speed用法及代码示例
- Python turtle.settiltangle用法及代码示例
- Python turtle.stamp用法及代码示例
- Python turtle.setundobuffer()用法及代码示例
- Python turtle.stamp()用法及代码示例
- Python turtle.setx用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 turtle.shapesize。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。