RazrFalcon / tiny-skia

A tiny Skia subset ported to Rust
BSD 3-Clause "New" or "Revised" License
1.05k stars 67 forks source link

Added path hit testing functionality #106

Open ye-xue opened 9 months ago

ye-xue commented 9 months ago

Hit testing is the process of determining if a point is within the region that would be painted by the path. A typical use case is to determine if a user’s cursor is hovering over a particular path. The process generally follows the same form as rendering.

RazrFalcon commented 9 months ago

If someone is willing to implement it - sure. Otherwise there are no plans for it.