Skip to content

Instantly share code, notes, and snippets.

@dropmeaword
Created February 28, 2020 11:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dropmeaword/7e70b52a6f4f4163882c99056ab0b51f to your computer and use it in GitHub Desktop.
Save dropmeaword/7e70b52a6f4f4163882c99056ab0b51f to your computer and use it in GitHub Desktop.
simple p5 sketch in a tweet that draw a sphere animation with some perlin noise
float i;void setup(){size(900,900,P3D);}void draw(){translate(450+450*cos(i*.9),600+400*sin(i+=.01)*noise(i));sphere(30/noise(i));}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment