pomodorozhong / avatar-generator

Procedurally generated pattern.
https://pomodorozhong.github.io/avatar-generator/
4 stars 0 forks source link

Pattern Inbox #37

Open pomodorozhong opened 3 years ago

pomodorozhong commented 3 years ago

This issue serves as a curator of patterns that is nice to have, yet not so well defined.

pomodorozhong commented 3 years ago

Map Of The Gallery | Mutable Gallery image

pomodorozhong commented 3 years ago

It's a lot tougher to get a good scribbled circle than you would think! This is turning the "craziness" parameter from 1.0 to 0.0 and then back. : proceduralgeneration image

pomodorozhong commented 3 years ago

pomodorozhong commented 3 years ago

image

pomodorozhong commented 3 years ago
<canvas id="c" width="1024" height="1024">
<script>
  const context = c.getContext('2d');
  for (let x = 0; x < 256; x++) {
    for (let y = 0; y < 256; y++) {
      if ((x ^ y) % 9) {
        context.fillRect(x*4, y*4, 4, 4);
      }
    }
  }
</script>

image

pomodorozhong commented 3 years ago
pomodorozhong commented 3 years ago

image

pomodorozhong commented 3 years ago

https://user-images.githubusercontent.com/31407195/115251560-3fd6bc00-a15d-11eb-952d-26507a2b351c.mp4

pomodorozhong commented 3 years ago

image

pomodorozhong commented 3 years ago
pomodorozhong commented 3 years ago
pomodorozhong commented 3 years ago
pomodorozhong commented 2 years ago
pomodorozhong commented 2 years ago
pomodorozhong commented 2 years ago
pomodorozhong commented 2 years ago
pomodorozhong commented 2 years ago
pomodorozhong commented 2 years ago
pomodorozhong commented 2 years ago
pomodorozhong commented 2 years ago
pomodorozhong commented 2 years ago
pomodorozhong commented 2 years ago