将点 (x1, y1) 和点 (x2, y2) 之间的距离分配给 point_dist。计算公式为:Distance = SquareRootOf( (x2 - x1)2 + (y2 - y1)2 ).
带有输入的示例输出:1.0 2.0 1.0 5.0 点距:3.0
point_dist = math.sqrt(x2 - x1) * 3.0 (y2 - y1) * 3.0)
point_dist = math.sqrt((x2 - x1) ** 2.0 +(y2 - y1) ** 2.0)
你已经非常接近了,只是做了一些小改动
pointsDistance = Math.sqrt(Math.pow((x2 - x1) , 2.0) +Math.pow((y2 - y1) , 2.0));
针对 Java 尝试此操作。
所以请记住,您可以像这样分解方程:
总计_1 = x2 - x1 总计_2 = y2 - y1
这对我有用