turtle 模块以面向对象和面向过程的方式提供 turtle 图形基元。由于它使用Tkinter作为基础图形,因此需要安装有Tk支持的Python版本。
turtle .shapetransform()
此函数用于设置或返回 turtle 形状的当前变换矩阵。如果没有给出任何矩阵元素,则返回转换矩阵。否则,设置给定元素并根据第一行t11,t12和second-row t21、22组成的矩阵变换 turtle 形状。
用法:turtle.shapetransform(t11=None, t12=None, t21=None, t22=None)
参数:
t11,t12,t21,t22(可选):行列式t11 * t22-t12 * t21不能为零,否则会引起错误。
下面是上述方法的实现和一些示例:
范例1:
Python3
# import package
import turtle
# check the default value
print(turtle.shapetransform())
输出:
(1.0, 0.0, 0.0, 1.0)
范例2:
Python3
# import package
import turtle
# change shapetransform to 2,0,2,0
# as determinant of the matrix
# [[2,0],[0,2]] is 0.
# so, raised an error
turtle.shapetransform(2,0,2,0)
输出:
turtle.TurtleGraphicsError:Bad shape transform matrix:must not be singular
范例3:
Python3
# import package
import turtle
# loop for pattern
for i in range(5):
for j in range(10):
# motion
turtle.forward(5+5*(i+j))
turtle.left(45)
# transform the shape
turtle.shapetransform(i+1,0,0,i+1)
输出:
相关用法
- Python Wand function()用法及代码示例
- Python str()用法及代码示例
- Python hex()用法及代码示例
- Python id()用法及代码示例
- Python int()用法及代码示例
- Python now()用法及代码示例
- Python cmp()用法及代码示例
- Python oct()用法及代码示例
- Python dir()用法及代码示例
- Python map()用法及代码示例
- Python tell()用法及代码示例
- Python sum()用法及代码示例
- Python ord()用法及代码示例
- Python __import__()用法及代码示例
- Python numpy.ix_()用法及代码示例
- Python numpy.ma.where()用法及代码示例
注:本文由纯净天空筛选整理自deepanshu_rustagi大神的英文原创作品 turtle.shapetransform() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。