Skip to content

Instantly share code, notes, and snippets.

@roundrobin
Created June 28, 2012 03:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roundrobin/3008939 to your computer and use it in GitHub Desktop.
Save roundrobin/3008939 to your computer and use it in GitHub Desktop.
just another inlet to tributary
var type = ["linear", "step-before",
"step-after", "basis",
"basis-open", "basis-closed",
"bundle", "cardinal",
"cardinal-open", "cardinal-closed",
"monotone"];
var line = d3.svg.line()
.x(function(d) { return d.x; })
.y(function(d) { return d.y; })
var data1 = [{x:0,y:-39},
{x:376,y:28}];
function toPath (data){
var path = 'M0,0'
for(i in data ){
var p = data[i];
path += 'L'+p.x+','+p.y;
var temp = parseInt(i)+1;
if(i < (data.length-1)){
var range = Math.abs(data[i].x - data[temp].x);
for(var j = 0;j < range;j++){
path += 'L'+(data[i].x+j)+','+(20*Math.sin(j/4));
}
}
}
return path;
}
g.selectAll("path")
.data(data1)
.enter().append("svg:path")
.attr("d", toPath(data1))
.attr('fill','none')
.attr('stroke',"#1949C5")
.attr('stroke-width',3)
.attr('transform','translate(100,100)')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment