Ev.Pointer
Pointer events
The type for PointerEvent
objects.
val id : t -> int
id p
is the identifier of the pointer causing the event (id
s can get recycled but they are unique among active pointers).
val pressure : t -> float
val tangential_pressure : t -> float
tanganital_pressure p
is the normalized tangential pressure of the pointer in the range -1.
to 1.
with 0.
the neutral position of the control. If the hardware has no support this must be 0.
.
val tilt_x : t -> int
tilt_x p
is the plane angle in degree in the range -90
to 90
between the Y-Z plane and the plane containing the transducer axis and the Y axis. Positive tilt is to the right and 0
if unsupported.
val tilt_y : t -> int
tilt_y p
is the plane angle in degree in the range -90
to 90
between the X-Z plane and the plane containing the transducer axis and the X axis. Positive tilt is towards the user and 0
if unsupported.
val twist : t -> int
twist p
is the rotation in degree in the range 0;359
of the transducer around its own major axis. If unsupported this must be 0
.
val altitude_angle : t -> float
altitude_angle p
is the altitude in radians of the transducer in the range 0. to π/2
where 0
is parallel to the surface X-Y plane and π/2
is perpendicular to the surface. If unsupported this must be π/2
.
val azimuth_angle : t -> float
azimuth_angle p
is the azimuth angle in radians in the range 0. to 2π
where 0
represents a transducer whose cap is pointing in the direction of increasing X values on the XY-plane. If unsupported must be 0
.
type' p
is the pointer type.
val is_primary : t -> bool
is_primary p
is true
if the pointer represents the primary pointer.
get_coalesced_events p
is the list of events that were coalesced into p
.
get_predicted_events p
is the list of predicted events for p
.