You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Come up with examples where you can create animations.
Once there is a wait fn, an animation in Logo can created by drawing a picture, calling wait, calling clean, and doing it over again with another picture.
An animation using Logo functions will need to handle looping, termination, and loop state that each loop's picture can use. The easiest way is probably (dotimes [i MAX-FRAMES] ...)
The text was updated successfully, but these errors were encountered:
Come up with examples where you can create animations.
Once there is a
wait
fn, an animation in Logo can created by drawing a picture, callingwait
, callingclean
, and doing it over again with another picture.An animation using Logo functions will need to handle looping, termination, and loop state that each loop's picture can use. The easiest way is probably
(dotimes [i MAX-FRAMES] ...)
The text was updated successfully, but these errors were encountered: