xxxxxxxxxx
47
function setup() {
createCanvas(600, 400, WEBGL);
noFill();
}
function draw() {
background(0); // Set background to black
// Define colors for the lines
let colors = ['#97D3D2', '#EE7E7F', '#6BB93D'];
rotateY(frameCount * 0.01); // Rotate slowly around the Y axis
// Draw a central sphere with the color #DDDDDD
push();
fill('#DDDDDD');
noStroke();
sphere(30); // Static central sphere
pop();
// Draw multiple rotating wave lines
for (let i = 0; i < colors.length; i++) {
for (let k = -2; k <= 2; k++) { // Draw multiple lines with offsets
push();
stroke(colors[i]);
strokeWeight(1);
// Create wave effect by using sin and cos functions
let angleOffset = frameCount * 0.02 + i;
let waveRadius = 150 + k * 10; // Offset the radius for multiple lines
beginShape();
for (let j = 0; j < TWO_PI; j += 0.1) {
let x = waveRadius * cos(j);
let y = 50 * sin(j * 2 + angleOffset); // Wave motion in y-axis
let z = waveRadius * sin(j);
vertex(x, y, z);
}
endShape(CLOSE);
pop();
}
}
}