如何判断某个点是否在某条线附近?

24

本文介绍了如何判断某个点是否在某条线附近?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我问怎么能我告诉一个点是否属于某条线?"之前我找到了合适的答案,非常感谢.

I asked "How can I tell if a point belongs to a certain line?" before and I found a suitable answer so thank you very much.

现在,我想知道如何判断某个点是否接近我的线.

Now, I would like to know how to tell if a certain point is close to my line.

推荐答案

你需要计算到直线的直角距离.然后你必须定义什么是接近"并测试它是否在那个距离内.

You need to calculate the right angle distance to the line. Then you have to define what "close" is and test if it is within that distance.

你想要的等式是:

这篇关于如何判断某个点是否在某条线附近?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

C# 中的多播委托奇怪行为?
Multicast delegate weird behavior in C#?(C# 中的多播委托奇怪行为?)...
2023-11-11 C#/.NET开发问题
6

参数计数与调用不匹配?
Parameter count mismatch with Invoke?(参数计数与调用不匹配?)...
2023-11-11 C#/.NET开发问题
26

如何将代表存储在列表中
How to store delegates in a List(如何将代表存储在列表中)...
2023-11-11 C#/.NET开发问题
6

代表如何工作(在后台)?
How delegates work (in the background)?(代表如何工作(在后台)?)...
2023-11-11 C#/.NET开发问题
5

没有 EndInvoke 的 C# 异步调用?
C# Asynchronous call without EndInvoke?(没有 EndInvoke 的 C# 异步调用?)...
2023-11-11 C#/.NET开发问题
2

Delegate.CreateDelegate() 和泛型:错误绑定到目标方法
Delegate.CreateDelegate() and generics: Error binding to target method(Delegate.CreateDelegate() 和泛型:错误绑定到目标方法)...
2023-11-11 C#/.NET开发问题
14