javascript计算两条直线的夹角
Posted ystrdy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript计算两条直线的夹角相关的知识,希望对你有一定的参考价值。
计算上面两直线的夹角,代码如下
const getAngle = ({ x: x1, y: y1 }, { x: x2, y: y2 }) => {
const dot = x1 * x2 + y1 * y2
const det = x1 * y2 - y1 * x2
const angle = Math.atan2(det, dot) / Math.PI * 180
return (angle + 360) % 360
}
const angle = getAngle({
x: x1 - x3,
y: y1 - y3,
}, {
x: x2 - x3,
y: y2 - y3,
});
console.log(angle);
以上是关于javascript计算两条直线的夹角的主要内容,如果未能解决你的问题,请参考以下文章