I want to draw a bezier curve with mouse event.
function draw(selection)
{
var keep = false, path, xy0;
line = d3.svg.line()
.interpolate(function(points) {return points.join("M10 80 C 40 10, 65 10, 95 80 S 150 150, 180 80"); })
.x(function(d) {return d[0];})
.y(function(d) {return d[1];});
selection
.on('mousedown', function() {
keep = true;
xy0 = d3.mouse(this);
path = d3.select('svg')
.append('path')
.attr('d', line([xy0, xy0]))
.style({'stroke': 'black', 'stroke-width': '3px'});
})
.on('mouseup', function() {
keep = false;
})
.on('mousemove', function(){
if(keep) {
Line = line([xy0, d3.mouse(this).map(function(x) {return x - 1;})]);
console.log(Line);
path.attr('points', Line);
}
});
}
But it doesn't work. Do you have an idea how to do that?
Thanks in advance,
Still not sure I understand the question.
No, that's a path's "d" attribute which draws a specific bezier curve. I'm not sure how you'd combine that with your mouse movements. I tried to and I guess it produces curves of a sort:
If you want a smooth curve from start to end you could try something like this: