检查一个点是否在 3d 线上?

发布于 2024-10-18 05:28:15 字数 398 浏览 2 评论 0原文

我知道如何检查一个点是否在 2d 线上,但我想在 3D 中执行此操作。有什么想法吗?

        // slope from point 1 to point 3
        var p13:Number = (Math.atan2 (end.x - start.x, end.y - start.y)) * toDegrees;

        // slope from point 1 to point 2 -- matches?
        var p12:Number = (Math.atan2 (point.x - start.x, point.y - start.y)) * toDegrees;

        return Math.round(p12) == Math.round(p13);

I know how to check if a point is on a 2d line or not, but I'd like to do this in 3D. Any ideas?

        // slope from point 1 to point 3
        var p13:Number = (Math.atan2 (end.x - start.x, end.y - start.y)) * toDegrees;

        // slope from point 1 to point 2 -- matches?
        var p12:Number = (Math.atan2 (point.x - start.x, point.y - start.y)) * toDegrees;

        return Math.round(p12) == Math.round(p13);

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

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

发布评论

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

评论(3

指尖上的星空 2024-10-25 05:28:15

标准化向量。检查法线是否匹配。

找到最大值,将所有其他值除以该值,得到法线向量。

直线上的任何点都应具有相同的法向量。

Normalize the vectors. Check if the normals match.

Find the greatest value, divide all of the other values by that value so you get a vector normal.

Any point on a line should have the same vector normal.

零崎曲识 2024-10-25 05:28:15

一个点永远不可能位于真实坐标中的一条线上。你需要做的是计算到距离线最近的点的距离,并决定是否这样做对你来说足够近了。

A point can never be 'on' a line in real coords. what you need to do is calculate the distance to the closest point to the line and decide if this is close enough for you.

冰雪之触 2024-10-25 05:28:15

直线的方程为

v(t) = v0 + t*dir

其中 v0 是直线上的某个点,dir 是直线的方向。只需检查您的点是否足够准确地匹配该线性方程

The equation of a line is

v(t) = v0 + t*dir

Where v0 is some point on a line and dir is it's direction. Simply check if your point match this linear equation with enough accuracy

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