# As simple as possible

**URL:** https://discourse.processing.org/t/as-simple-as-possible/28123
**Category:** Gallery
**Created:** [February 27, 2021, 11:42pm UTC](https://discourse.processing.org/t/as-simple-as-possible/28123 "2021-02-27T23:42:53Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![jafal](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/jafal/32/19112_2.png) [@jafal](https://discourse.processing.org/u/jafal)
#### Post date: [February 27, 2021, 11:42pm UTC](https://discourse.processing.org/t/as-simple-as-possible/28123/1 "2021-02-27T23:42:53Z")

</div>

```auto
void setup () {
size (600,600);
colorMode(HSB);
}
void draw(){
for(int i= 500; i >0; i=i -2) {
  stroke((i/2) + (mouseX/3), 255,255);
ellipse (i,300,i,i);
}
}

```

---

<div class="post-metadata">

### Author: ![jafal](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/jafal/32/19112_2.png) [@jafal](https://discourse.processing.org/u/jafal)
#### Post date: [February 27, 2021, 11:43pm UTC](https://discourse.processing.org/t/as-simple-as-possible/28123/2 "2021-02-27T23:43:40Z")

</div>

![Untitled 38](https://canada1.discourse-cdn.com/flex036/uploads/processingfoundation1/original/2X/f/ffadb60f97c0ef82489fe4f4f0704de9ee8e0d3d.jpeg)

---

<div class="post-metadata">

### Author: ![jafal](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/jafal/32/19112_2.png) [@jafal](https://discourse.processing.org/u/jafal)
#### Post date: [May 28, 2021, 5:49pm UTC](https://discourse.processing.org/t/as-simple-as-possible/28123/3 "2021-05-28T17:49:15Z")

</div>

```auto
void setup () {
size (600,600);
colorMode(HSB);
}
void draw(){
for(int i= 500; i >0; i=i -2) {
  stroke((i/5) + (mouseX/3), 225,255);
rect(i,3,i,height);
}
}

```

---

<div class="post-metadata">

### Author: ![jafal](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/jafal/32/19112_2.png) [@jafal](https://discourse.processing.org/u/jafal)
#### Post date: [May 28, 2021, 5:54pm UTC](https://discourse.processing.org/t/as-simple-as-possible/28123/4 "2021-05-28T17:54:48Z")

</div>

```auto
void setup () {
size (600,600);
colorMode(HSB);
}
void draw(){
for(int i= 500; i >0; i=i -2) {
  stroke((i/5) + (mouseX/3), 225,255);
line(i,1,i,height);
}
}

```

---

<div class="post-metadata">

### Author: ![jafal](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/jafal/32/19112_2.png) [@jafal](https://discourse.processing.org/u/jafal)
#### Post date: [May 28, 2021, 6:03pm UTC](https://discourse.processing.org/t/as-simple-as-possible/28123/5 "2021-05-28T18:03:32Z")

</div>

```auto
void setup () {
size (600,600);
colorMode(HSB);
}
void draw(){
for(int i= 500; i >0; i=i -2) {
  fill((i/5) + (mouseX/3), 225,255);
rect(i,1,i,height);
}
}

```
