Created
April 9, 2014 01:45
-
-
Save mattdesl/10218005 to your computer and use it in GitHub Desktop.
pseudo-code for perlin-noise based generative impressionist paintings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
render | |
for each particle | |
x, y = particle.position | |
color = sample( colorMap, x, y ) | |
noise = sample( noiseMap, x, y ) | |
angle = noise * PI * 2 | |
particle.velocity.add( cos(angle), sin(angle) ) | |
particle.velocity.normalize() | |
drawParticle( particle, color ) | |
#a crude way of killing off particles ... | |
particle.life -= drain | |
if (particle.life < 0) | |
particle.life = 1 | |
particle.resetPosition() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment