onDoubleTouch

open override fun onDoubleTouch(pos: Xy)

Single pointer double touch event. A double touch event is defined as two consecutive touches within a preset time duration in milliseconds, and distance between the two touches has to be less than a preset distance in millimeters.

Parameters

pos

is the position where event occurred


var onDoubleTouch: (pos: Xy) -> Unit?

Single pointer double touch event. Lambda Signature: (pos: Xy) -> Unit A double touch event is defined as two consecutive touches within a preset time duration in milliseconds, and distance between the two touches has to be less than a preset distance in millimeters.

Parameters

pos

is the position where event occurred