Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我构造了一个Path2D表示由直线组成的未闭合形状:
Path2D
我希望能够检测何时单击鼠标并且鼠标指针靠近路径(在几个像素内)。使用该contains方法不起作用,因为该算法将未闭合的形状视为隐式闭合(即通过在起点和终点之间绘制一条直线)。
contains
有谁知道实现这一目标的另一种机制?
来自 Stroke.createStrokedShape API 文档:
根据实现 Stroke 接口的对象定义的规则,返回一个轮廓形状,该形状包含在描边形状时应绘制的区域。