Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 6, 2023 03:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/0e48f992ad687541953ecd468c3ec69f to your computer and use it in GitHub Desktop.
Save parzibyte/0e48f992ad687541953ecd468c3ec69f to your computer and use it in GitHub Desktop.
$btnRotarDerecha.addEventListener("click", () => {
grados += 90;
dibujarSegunGrados(grados);
});
$btnRotarIzquierda.addEventListener("click", () => {
grados -= 90;
dibujarSegunGrados(grados);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment