我将如何改变“接近”线性(在阈值内)实际上是线性的点?
我有一些代码可以检查 3 个点是否彼此线性(给予或接受),我想用 100% 内联的新坐标替换这些坐标。
double distance = (x1 - x2) * (y1 - y3) - (y1 - y2) * (x1 - x3);
double threshold = 4;
if (Math.abs(distance) <= threshold) {
// is Near line
return true;
}
else
return false;
这是我的另一篇文章的扩展......这不是转发,只是一个相关主题: