Code Sketch
Crows Flying
By: Vibs
Category: Art
cleari() showAxes() setBackground(yellow) setAnimationDelay(1) setPosition(-450, 50) setPenColor(black) setPenThickness(3) right(125) def crows(steps:Int, size:Int) { if(steps==0) { } else { forward(size) left(45) forward(size) hop(25) setHeading(-25) crows (steps-1,size) } } crows(9,35)
Your Comment: