diff --git a/2019/sketch_190307a/sketch_190307a.pyde b/2019/sketch_190307a/sketch_190307a.pyde index 425dfd19..a50f23d0 100644 --- a/2019/sketch_190307a/sketch_190307a.pyde +++ b/2019/sketch_190307a/sketch_190307a.pyde @@ -1,5 +1,6 @@ # Alexandre B A Villares - https://abav.lugaralgum.com/sketch-a-day -SKETCH_NAME = "sketch_190307a" # based on s096 of 180406 +SKETCH_NAME = "sketch_190307a" +# An invisible graph is behind this rounded poly :) add_library('GifAnimation') @@ -114,3 +115,14 @@ def keyPressed(): def keyReleased(): input.keyReleased() + +# print text to add to the project's README.md +def settings(): + OUTPUT = ".gif" + println( + """ +![{0}](2019/{0}/{0}{1}) + +[{0}](https://github.com/villares/sketch-a-day/tree/master/2019/{0}) [[Py.Processing](https://villares.github.io/como-instalar-o-processing-modo-python/index-EN)] +""".format(SKETCH_NAME, OUTPUT) + )