Skip to content

Instantly share code, notes, and snippets.

@felipecabargas
Created March 29, 2013 00:26
Show Gist options
  • Save felipecabargas/5267908 to your computer and use it in GitHub Desktop.
Save felipecabargas/5267908 to your computer and use it in GitHub Desktop.
Cubo de Concreto
import turtle as t
from math import sqrt
t.forward(10)
t.right(90)
t.forward(10)
t.right(90)
t.forward(10)
t.right(90)
t.forward(10)
t.right(135)
t.forward(10*sqrt(2))
t.right(135)
t.forward(10)
t.right(135)
t.forward(10*sqrt(2))
t.right(-135)
Copy link

ghost commented Mar 29, 2013

pero ese concreto es con gravilla o sin gravilla ?

@felipecabargas
Copy link
Author

sin gravilla... la tortuga pedía horas extra con gravilla

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment