xxxxxxxxxx
33
let angle = 0;
let r = 150;
let res = 362;
function setup() {
createCanvas(400, 400, WEBGL);
angleMode(DEGREES);
colorMode(HSB);
noFill();
}
function draw() {
background(0);
for(let i = 0; i < 20; i++){
stroke(i * angle, 100, 50);
strokeWeight(i/5);
beginShape(POINTS)
for(let a = 0; a < res; a+=res/45){
let x = r * cos(a);
let y = r * sin(a);
rotateX(angle/45);
rotateY(angle/45);
rotateZ(angle/45);
vertex(x, y, cos(angle));
}
endShape()
}
angle += 0.01;
r += 0.001;
}