xxxxxxxxxx
42
let x = 0.1;
let y = 0.1;
let z = 0.1;
let a = 0.44;
let b = 1.1;
let c = 1.0;
let points = new Array();
function setup() {
createCanvas(windowWidth, windowHeight, WEBGL);
}
function draw() {
background(0);
let dt = 0.03;
let dx = y * dt;
let dy = z * dt;
let dz = ((-c * x) - (b * y) - (a * (z + (x * x)))) * dt;
x = x + dx;
y = y + dy;
z = z + dz;
points.push(new p5.Vector(x, y, z));
let camX = map(mouseX, 0, width, -200, 200);
let camY = map(mouseY, 0, height, -200, 200);
camera(camX, camY, (height / 5.0) / tan(PI * 30.0 / 180.0), 0, 0, 0, 0, 3, 0);
scale(10);
stroke(225, 80);
strokeWeight(1);
noFill();
beginShape();
for (let v of points) {
vertex(v.x, v.y, v.z);
// console.log(x, y, z);
}
endShape();
}