Equivalent of coalescedTouchesForTouch in AppKit?

This method on UIEvent gets you more touch positions, and I think it's useful for a drawing app, to respond with greater precision to the position of the Pencil stylus.

Is there a similar thing in macOS, for mouse or tablet events? I found this property mouseCoalescingEnabled, but the docs there don't describe how to get the extra events.

I may miss something in your question.

Can't you use the info in allTouches() ?

https://developer.apple.com/documentation/appkit/nsevent/alltouches()

Equivalent of coalescedTouchesForTouch in AppKit?
 
 
Q