diff --git a/2020/sketch_2020_03_11a/sketch_2020_03_11a.pyde b/2020/sketch_2020_03_11a/sketch_2020_03_11a.pyde index 95cff60a..883ec0d8 100644 --- a/2020/sketch_2020_03_11a/sketch_2020_03_11a.pyde +++ b/2020/sketch_2020_03_11a/sketch_2020_03_11a.pyde @@ -1,14 +1,14 @@ """ - * Animation - * https:#rosettacode.org/wiki/Animation#Processing - * Processing 3.4 - * 2019-08 Jeremy Douglass - * - * Task: Create a window containing the string "Hello World! " - * (the trailing space is significant). Make the text appear to be rotating - * right by periodically removing one letter from the end of the string and - * attaching it to the front. - * When the user clicks on the (windowed) text, it should reverse its direction. +Animation +https://rosettacode.org/wiki/Animation#Processing +Processing 3.4 +2019-08 Jeremy Douglass +2020-03 Alexandre Villares (Python Mode) +Task: Create a window containing the string "Hello World! " +(the trailing space is significant). Make the text appear to be rotating +right by periodically removing one letter from the end of the string and +attaching it to the front. +When the user clicks on the (windowed) text, it should reverse its direction. """ txt = "Hello, world! "