Java-使用两个双精度数组作为构造函数“Polygon”的输入使用“包含”方法
我想知道是否有任何类型的 Polygon.double 因为我需要输入两个 double [] 数组并测试多边形中是否包含另一个点。我看到了另一篇关于 Path2D.double 的文章,但它似乎没有任何类似的方法,比如 Polygon 中的“contains”。
I was wondering if there is any sort of Polygon.double because I need to input two double [] arrays and test whether another point is contained in the polygon. I saw another post about Path2D.double but it doesn't seem to have any similar methods like "contains" in Polygon.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个 在 Polygon 和 Path2D.Double 中包含(double x, double y)。
编辑:
另请查看这篇文章。
There is a contains(double x, double y) in Polygon and Path2D.Double.
EDIT:
Also check out this post.