获取两个坐标之间的长度?

发布于 2024-12-04 21:14:23 字数 315 浏览 3 评论 0原文

我正在尝试使用 Raphael.js 路径获取两个坐标之间的长度。

例如,如果我有以下路径:

M612 295 L690 429 L642 565 L540 432 L711 379 L763 502 L683 585 L480 612 L605 466 L717 318 L888 466 L756 586 L609 392 L835 248 L874 472 L927 622 L724 674 L708 403 L563 391

然后我希望能够获得 711 379927 622 之间的长度,这可能吗?

I'm trying to get the length between two coordinates using a Raphael.js path.

If I for example have this path:

M612 295 L690 429 L642 565 L540 432 L711 379 L763 502 L683 585 L480 612 L605 466 L717 318 L888 466 L756 586 L609 392 L835 248 L874 472 L927 622 L724 674 L708 403 L563 391

Then I want to be able to get the length between 711 379 and 927 622, is that possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

想挽留 2024-12-11 21:14:24

使用毕达哥拉斯定理,就像Ivan指出,这是要走的路。

我创建了 这个库 来解决我的问题。

这是一个例子。

var paper = Raphael(10, 50, 320, 200);
var path = paper.path("M10 10 L90 90 L21 18 L19 31");

path.getLengthBetweenCoordinates({
  y: 10,
  x: 10 
}, {
  x: 21,
  y: 18
});

/* => 212.86170582141557 */

Using pythagorean theorem, just like Ivan pointed out, is the way to go.

I created this lib to solve my problem.

Here is an example.

var paper = Raphael(10, 50, 320, 200);
var path = paper.path("M10 10 L90 90 L21 18 L19 31");

path.getLengthBetweenCoordinates({
  y: 10,
  x: 10 
}, {
  x: 21,
  y: 18
});

/* => 212.86170582141557 */
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文