From e00c73a67db4864458528ddc3d58b832d83de234 Mon Sep 17 00:00:00 2001 From: Alexandre B A Villares Date: Mon, 6 Apr 2020 14:23:27 -0300 Subject: [PATCH] Update README.md --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index a710d638..18fec60d 100644 --- a/README.md +++ b/README.md @@ -17,12 +17,34 @@ You may also support my artistic work, open educational resources and research u ## 2020 +--- + +![sketch_2020_04_05a](2020/sketch_2020_04_05a/sketch_2020_04_05a.gif) + +[sketch_2020_04_05a](https://github.com/villares/sketch-a-day/tree/master/2020/sketch_2020_04_05a) [[Py.Processing](https://villares.github.io/como-instalar-o-processing-modo-python/index-EN)] + +```python +axiom = 'L' +rules = { + 'L': '[-RF[-LF+]]', + 'R': '[+LF[+RF-]]', +} + +``` + --- ![sketch_2020_04_04a](2020/sketch_2020_04_04a/sketch_2020_04_04a.png) [sketch_2020_04_04a](https://github.com/villares/sketch-a-day/tree/master/2020/sketch_2020_04_04a) [[Py.Processing](https://villares.github.io/como-instalar-o-processing-modo-python/index-EN)] +```python +axiom = 'L' +rules = { + 'L': '-RF[-L]', + 'R': '+LF[+R]', +} +``` ---