multitouch - part-cw/lambdanative GitHub Wiki

(multitouch t x y)

This function keeps track of multi-touch state. It must be called in the event loop, with the current event parameters.

Parameter Description
t event type
x first event argument
y second event argument

Example

...
;; event loop
(lambda (t x y)
  (multitouch t x y)
   ...