我正在制作一个程序来显示各种变换下的矩阵,除了我的旋转矩阵之外,它们都可以工作。我试过摆弄它,但似乎没有任何效果
y = input("how many degrees do you want to rotate the shape around the origin?: ")
j = array([(cos(int(y)), -sin(int(y))), (sin(int(y)), cos(int(y)))])
print(j.dot(w))
input("enter to exit")