xxxxxxxxxx
63
// PARTICLES AROUND AN (INVISIBLE) OBJECT
//global varialbes for object
//shape is rod
function setup() {
createCanvas(400, 400, WEBGL);
rod = {
x : width/2,
y : height/2,
z : 0,
leng : 2*width/3,
r : 50
}
}
function draw() {
background(220);
}
function Strip() {
//PARAMS
//location
this.pos = createVector(0,0,0);
this.vel = createVector(0,0,0);
this.acc = createVector(0,0,0);
// rotational physics
this.theta = 0;
this.rvel = 0;
this.racc = 0;
//appearance
this.size = random(25);
this.resolution = 15;
this.fill = random(51);
this.stroke = 0;
//FUNCTIONS
this.render = function() {
}
this.update = function() {
}
}