I have a problem with the following code:
for x0 in range(len(matriz)): # Abaixo foi aplicada a fórmula de transformações lineares para linhas e colunas.
xn = transformação[0][0] * x0 + transformação[0][1] * x0 + y0 + transformação[0][2] % (len(matriz))
for y0 in range(len(matriz[0])):
yn = transformação[1][0] * x0 + transformação[1][1] * y0 + transformação[1][2] % (len(matriz[0]))
matrizt[xn][yn] = matriz[x0][y0]
y0 += 1
y0 = 0
x0 += 1
The error is as follows:
'int' object is not subscriptable
More specifically, the error is in relation to the line:
xn = transformação[0][0] * x0 + transformação[0][1] * x0 + y0 + transformação[0][2] % (len(matriz))