When I want to draw lines that through three points, and make a round corner at the second point. And then problem happens, if the angle between the two line is less than 90 degree, there will be some extra line append on the line through point1 and point2. if the angle large or equal 90 degree, it will be ok.
You can see this in fiddle: http://jsfiddle.net/qiu8310/8cFZG/2/
And here is the javascript code and the result:
"use strict";
function Point(x, y){
this.x = x ? x : 0;
this.y = y ? y : 0;
}
var ctx,
canvas = document.getElementById('canvas');
canvas.width = 600;
canvas.height = 600;
ctx = canvas.getContext('2d');
ctx.lineWidth = 2;
draw(ctx, new Point(50,10), new Point(20, 300), new Point(100, 320) );
draw(ctx, new Point(200,10), new Point(200, 300), new Point(300, 20) );
function draw(ctx, p1, p2, p3){
var k1,k2, k, len, r=8;
k1 = Math.atan2(p2.y - p1.y, p2.x - p1.x);
k2 = Math.atan2(p3.y - p2.y, p3.x - p2.x);
k = (k1-k2)/2;
len = Math.abs(r/Math.tan(k)); // the distance between point of tangency and p2
ctx.moveTo(p1.x, p1.y);
ctx.lineTo(p2.x - len*Math.cos(k1), p2.y - len*Math.sin(k1) ); // lineTo the point of tangency
ctx.arcTo(p2.x, p2.y, p2.x + len*Math.cos(k2), p2.y + len*Math.sin(k2), r ); // then arc
ctx.lineTo(p3.x, p3.y); // till p3
ctx.stroke();
}
lendistance away from P2, but then you attempt to draw yourarcTodirectly top2.x,p2.y. You should instead be – Phrogz Apr 7 '12 at 14:06