Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+14 votes
asked in CSC 150 January201920 by (1 point)
+6

Thank You

5 Answers

+7 votes

If you want to make multiple turtles move in a spiral evenly:

   ask turtles [
    fd 0.5
    left 5
  ]
 tick
answered by (1 point)
+7 votes

you can use the right 1 and make a forever button and have the turtles spin in place

answered by (1 point)
+6

Also: tilt-up 1 or roll-left 1

+7 votes

Yup. Although right 1 may be too fast. You could always put in a wait .1 and then a right .5 and adjust if those are too fast or slow.

answered by (1 point)
+6 votes

For your case, it would be
repeat 360 [ roll-right 1]

answered by (1 point)
+4 votes

Depending on if you're in 3d or 2d a simple right "x" should do the trick

answered by (1 point)
...