Skip to content

Instantly share code, notes, and snippets.

@ProgDan
Created June 12, 2020 13:38
Show Gist options
  • Save ProgDan/05cea1e0e8d0d7cf16e85f203854f113 to your computer and use it in GitHub Desktop.
Save ProgDan/05cea1e0e8d0d7cf16e85f203854f113 to your computer and use it in GitHub Desktop.
# Verifica se houve colisão com a cabeça
for segment in segments:
if segment.distance(head) < 20:
time.sleep(1)
head.goto(0, 0)
head.direction = "stop"
# Oculta os segmentos
for segment in segments:
segment.goto(1000, 1000)
# Limpa a lista de segmentos
segment.clear()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment