Each curve follows 2d perlin space at a different, but nearby, z axis. The result is the appearance of topology as curves expose gradients in noise function.
Last active
August 29, 2015 14:04
-
-
Save d2fn/60f517d7a617990ed45e to your computer and use it in GitHub Desktop.
Perlin Curves II
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
background: rgb(255, 255, 255); | |
} | |
</style> | |
<body> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script src="/d2fn/raw/8777d620caef32959713/perlin.js"></script> | |
<script> | |
var width = 960, | |
height = 500, | |
noiseScale = 0.025, | |
actorStepLength = 1, | |
numActors = 10000, | |
step = 0, | |
steps = 500; | |
var canvas = d3.select("body") | |
.append("canvas") | |
.attr({width: width, height: height}); | |
var context = canvas.node().getContext("2d"); | |
context.fillStyle = "rgb(0, 0, 0)"; | |
context.fillRect(-1, -1, width, height); | |
var actors = []; | |
for(var i = 0; i < numActors; i++) { | |
actors.push(actor(width, height, noiseScale, actorStepLength)); | |
} | |
var opacity = easeInOut(steps); | |
d3.timer(function() { | |
if(++step > steps) { | |
console.log("done with animation"); | |
return true; | |
} | |
context.lineWidth = 0.5; | |
context.globalCompositeOperation = 'lighter'; | |
context.beginPath(); | |
for(var i in actors) { | |
var a = actors[i]; | |
var ln = a.step(); | |
var alpha = 0.3*opacity.get(); | |
context.strokeStyle = "rgba(110, 180, 49, " + alpha + ")"; | |
context.moveTo(ln.x1, ln.y1); | |
context.lineTo(ln.x2, ln.y2); | |
} | |
context.stroke(); | |
opacity.step(); | |
}); | |
function actor(width, height, noiseScale, stepLength) { | |
var x = Math.random() * width, | |
y = Math.random() * height, | |
z = Math.random() * 15; | |
var noise = perlin.noise(noiseScale); | |
return { | |
// get the last point and the next point | |
step: function() { | |
var t = 24 * noise(x, y, z) | |
t = (t - Math.floor(t)) * 2 * Math.PI; | |
var x1 = x, | |
y1 = y; | |
x = x + stepLength * Math.cos(t); | |
y = y + stepLength * Math.sin(t); | |
return { | |
x1: x1, | |
y1: y1, | |
x2: x, | |
y2: y | |
} | |
} | |
} | |
} | |
function easeInOut(steps) { | |
var n = 0; | |
var val = 0; | |
return { | |
step: | |
function() { | |
val = 0.5*(1-Math.cos(2 * Math.PI * (n++) / steps)); | |
}, | |
get: | |
function() { | |
return val; | |
} | |
}; | |
} | |
</script> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment