Skip to content

Instantly share code, notes, and snippets.

@juunegreiros
Created June 23, 2020 18:05
Show Gist options
  • Star 18 You must be signed in to star a gist
  • Fork 22 You must be signed in to fork a gist
  • Save juunegreiros/4cd7bd68836ac6c65985298fc264a366 to your computer and use it in GitHub Desktop.
Save juunegreiros/4cd7bd68836ac6c65985298fc264a366 to your computer and use it in GitHub Desktop.
Matriz aula3
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],
]
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