xxxxxxxxxx
35
let timeValueX = 1000;
let timeValueY = 100;
let timeValueZ = 10;
let walker, noiseVector;
function setup() {
createCanvas(400, 400, WEBGL);
background(255);
perspective(PI / 3.0, width / height, 0.1, 500);
walker = createVector(0, 0, 0);
noiseVector = createVector(0, 0);
}
function draw() {
normalMaterial();
orbitControl();
const xNoise = map(noise(noiseVector.x), 0, 1, -1, 1)
const yNoise = map(noise(noiseVector.y), 0, 1, -1, 1)
const zNoise = map(noise(noiseVector.y), 0, 1, -1, 1)
walker.add(
createVector(xNoise, yNoise, zNoise)
)
noiseVector.add(timeValueX, timeValueY);
stroke(0);
strokeWeight(2);
push();
translate(walker.x, walker.y);
sphere(40);
pop();
}