Poligono regolare
2011-09: Intermediate Use the Small Basic Turtle to draw a regular polygon with the number of sides selected by the user. For example if the user enters… Leggi tutto »Poligono regolare
2011-09: Intermediate Use the Small Basic Turtle to draw a regular polygon with the number of sides selected by the user. For example if the user enters… Leggi tutto »Poligono regolare
Disegna una linea a ogni clic del mouse. GraphicsWindow.MouseDown=TiraLinea Turtle.Speed=8 Turtle.Show() Sub TiraLinea x=GraphicsWindow.MouseX y=GraphicsWindow.MouseY Turtle.MoveTo(x, y) EndSub
Disegna una linea seguendo i comandi delle frecce Up, avanti Down, indietro Left, a sinistra Right, a destra GraphicsWindow.KeyDown=Passo Turtle.Show() Turtle.Speed=9 distanza=50 Sub Passo tasto=GraphicsWindow.LastKey… Leggi tutto »Segue le frecce