Skip to content

Instantly share code, notes, and snippets.

@cmdr2
Last active April 28, 2020 11:24
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 cmdr2/67204fddb88bef1c4a90e5eac415f502 to your computer and use it in GitHub Desktop.
Save cmdr2/67204fddb88bef1c4a90e5eac415f502 to your computer and use it in GitHub Desktop.
<script src="https://cdnjs.cloudflare.com/ajax/libs/processing.js/1.6.0/processing.min.js"></script>
<body>
<script type="application/processing">
void setup(){
size(200, 200);
}
void draw(){
background(64);
ellipse(40, 40, 20, 20);
}
</script>
<canvas> </canvas>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment