Skip to content

Instantly share code, notes, and snippets.

@federico-pepe
Created August 4, 2015 16:55
Show Gist options
  • Save federico-pepe/ab7c808d13bed61f9995 to your computer and use it in GitHub Desktop.
Save federico-pepe/ab7c808d13bed61f9995 to your computer and use it in GitHub Desktop.
Create a red circle with a blue stroke
size(500, 500);
fill(255, 0, 0);
stroke(0, 0, 255);
ellipse(250, 250, 150, 150);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment