You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Set a pixel in the origin 0,0 position.matrix.pixel[0, 0] =1# Set a pixel in the middle 8, 4 position.matrix.pixel[8, 4] =1# Set a pixel in the opposite 15, 7 position.matrix.pixel[15, 7] =1matrix.show()
should be:
# Set a pixel in the origin 0,0 position.matrix[0, 0] =1# Set a pixel in the middle 8, 4 position.matrix[8, 4] =1# Set a pixel in the opposite 15, 7 position.matrix[15, 7] =1matrix.show()
The text was updated successfully, but these errors were encountered:
This is no longer correct usage:
should be:
The text was updated successfully, but these errors were encountered: