From cb0afde555aa6e8e0f41634c48bd863be97b21a2 Mon Sep 17 00:00:00 2001 From: Alexandre B A Villares Date: Tue, 9 Jan 2018 21:35:09 -0200 Subject: [PATCH] sketch 9! --- README.md | 6 ++++-- s180109/s180109.pyde | 7 ++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8528b76a..5673507f 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,11 @@ Hi! I'm [Alexandre Villares](https://abav.lugaralgum.com), let's see if I can make one small program (*sketch*) a day. -![s180108](s180108/s180108.gif) +![s180109](s180109/s180109.gif) -#### 008: [s180108](https://github.com/villares/sketch-a-day/tree/master/s180108) [[Py.Processing](https://villares.github.io/como-instalar-o-processing-modo-python/index-EN)] Grid of Platonic Solids in Python Mode [GIF](s180108/s180108.gif) +#### 009: [s180108](https://github.com/villares/sketch-a-day/tree/master/s180109) [[Py.Processing](https://villares.github.io/como-instalar-o-processing-modo-python/index-EN)] Balls for Manoloide [GIF](s180109/s180109.gif) (derived from a [sketch](https://gist.github.com/manoloide/16ea9e1d68c6ba1700fcb008fd38aab0) by [Manuel Gamboa Naon](http://manoloidee)) + +008: [s180108](https://github.com/villares/sketch-a-day/tree/master/s180108) [[Py.Processing](https://villares.github.io/como-instalar-o-processing-modo-python/index-EN)] Grid of Platonic Solids in Python Mode [GIF](s180108/s180108.gif) 007: [s180107](https://github.com/villares/sketch-a-day/tree/master/s180107) [[Processing Java](https://www.processing.org)] Another grid of Platonic Solids in Java Mode [GIF](s180107/s180107.gif) diff --git a/s180109/s180109.pyde b/s180109/s180109.pyde index 0b873bbf..7c7122a5 100644 --- a/s180109/s180109.pyde +++ b/s180109/s180109.pyde @@ -2,9 +2,10 @@ s180109 Balls for Manoloid! (c)2018 Alexandre B A Villares https://abav.lugaralgum.com/sketch-a-day -This is directly inspired by -Manuel Gamboa Naon's skech (twitter.com/manoloidee) +This is directly inspired by & derived from +Manuel Gamboa Naon's sketch https://gist.github.com/manoloide/16ea9e1d68c6ba1700fcb008fd38aab0 +posted at twitter.com/manoloidee """ mm = 0 @@ -127,4 +128,4 @@ class Rect: r.y += self.y - self.iy ellipses.append(r) - ellipses.remove(self) + ellipses.remove(self) \ No newline at end of file