Skip to content

Instantly share code, notes, and snippets.

@emmjab
emmjab / script.js
Created May 26, 2026 20:44
Untitled
let nparticles = 30
let rv = 0.1
let cloud = []
function setup(){
createCanvas(600,600,WEBGL)
r = random(4,50)
noStroke()
fill(200,230,255)
for (let i = 0; i<nparticles; i++){
cloud.push(new Particles())
@emmjab
emmjab / 0_reuse_code.js
Created December 3, 2015 15:51
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console