Published

graphic
turtle.penUp();
turtle.turn(-90);
turtle.move(150);
turtle.turn(90);
turtle.penDown();

for (var p = 3; p < 100; p++)
{
  for (var i=0; i<(360/p); i++)
  {
    turtle.move(10);
    turtle.turn(p);
  }
}