(areaIdx int, p f32.Point)
| 576 | } |
| 577 | |
| 578 | func (q *pointerQueue) invTransform(areaIdx int, p f32.Point) f32.Point { |
| 579 | if areaIdx == -1 { |
| 580 | return p |
| 581 | } |
| 582 | return q.areas[areaIdx].trans.Invert().Transform(p) |
| 583 | } |
| 584 | |
| 585 | func (q *pointerQueue) hit(areaIdx int, p f32.Point) (bool, pointer.Cursor) { |
| 586 | c := pointer.CursorDefault |
no test coverage detected