Created
June 23, 2020 18:05
-
-
Save juunegreiros/4cd7bd68836ac6c65985298fc264a366 to your computer and use it in GitHub Desktop.
Matriz aula3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const matrizInimigoGrande = [ | |
[0,0], | |
[400,0], | |
[800,0], | |
[1200,0], | |
[1600,0], | |
[0,400], | |
[400,400], | |
[800,400], | |
[1200, 400], | |
[1600, 400], | |
[0,800], | |
[400, 800], | |
[800, 800], | |
[1200, 800], | |
[1600, 800], | |
[0, 1200], | |
[400, 1200], | |
[800, 1200], | |
[1200, 1200], | |
[1600, 1200], | |
[0, 1600], | |
[400, 1600], | |
[800, 1600], | |
[1200, 1600], | |
[1600, 1600], | |
[0, 2000], | |
[400, 2000], | |
[800, 2000], | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const matrizInimigoVoador = [ | |
[0,0], | |
[200, 0], | |
[400, 0], | |
[0, 150], | |
[200, 150], | |
[400, 150], | |
[0, 300], | |
[200, 300], | |
[400, 300], | |
[0, 450], | |
[200, 450], | |
[400, 450], | |
[0, 600], | |
[200, 600], | |
[400, 600], | |
[0, 750], | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment