查找多边形的坐标
我有一个 4 边形多边形的高度、宽度 1 和宽度 2。如何检测鼠标在该区域被单击。
I have height, width1 and width2 of a 4 sided polygon. how to detect mouse is clicked in that region.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找“多边形中的点”算法。此链接包含说明和实现示例。
You're looking for a "point in polygon" algorithm. This link has a description and an implementation example.