var Over = function(){
d3.select(this)
.style("stroke-opacity", 0.25);
}
var Out = function(){
d3.select(this)
.transition().duration(200)
.style("stroke-opacity", 0);
}
I have a fascination with Bezier curves and will be posting some of my experiences here. Along with Bezier curves I am on a self-placed steep learning curve imbibing in Haskell.