We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在判断一个点是否落于三角行内,当出现如下情形: variable1 = np.array([[0, 20], [20, 20], [20, 20]]) variable2=np.array([x,x])时, isPointInTri(variable2, variable1) 这个函数的判断结果都为True, 也就是说,无论x为何值,结果都是True
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在判断一个点是否落于三角行内,当出现如下情形:
variable1 = np.array([[0, 20],
[20, 20],
[20, 20]])
variable2=np.array([x,x])时,
isPointInTri(variable2, variable1) 这个函数的判断结果都为True,
也就是说,无论x为何值,结果都是True
The text was updated successfully, but these errors were encountered: