You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Structure representing a simulated touch point.
483
+
// <para><see href="https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-TouchPoint">See the Input.TouchPoint type in the DevTools docs.</see></para>
484
+
typeTCefSimulatedTouchPointstruct {
485
+
// Identifier used to track touch sources between events, must be unique within an event. This is an optional value.
486
+
Idint32
487
+
// X coordinate of the event relative to the main frame's viewport in CSS pixels.
488
+
Xint32
489
+
// Y coordinate of the event relative to the main frame's viewport in CSS pixels. 0 refers to the top of the viewport and Y increases as it proceeds towards the bottom of the viewport.
490
+
Yint32
491
+
// X radius of the touch area (default: 1.0). This is an optional value.
492
+
RadiusXfloat32
493
+
// Y radius of the touch area (default: 1.0). This is an optional value.
494
+
RadiusYfloat32
495
+
// Rotation angle (default: 0.0). This is an optional value.
496
+
RotationAnglefloat32
497
+
// Force (default: 1.0). This is an optional value.
498
+
Forcefloat32
499
+
// The normalized tangential pressure, which has a range of [-1,1] (default: 0). This is an optional value.
500
+
TangentialPressurefloat32
501
+
// The plane angle between the Y-Z plane and the plane containing both the stylus axis and the Y axis, in degrees of the range [-90,90], a positive tiltX is to the right (default: 0) This is an optional value.
502
+
TiltXint32
503
+
// The plane angle between the X-Z plane and the plane containing both the stylus axis and the X axis, in degrees of the range [-90,90], a positive tiltY is towards the user (default: 0). This is an optional value.
504
+
TiltYint32
505
+
// The clockwise rotation of a pen stylus around its own major axis, in degrees in the range [0,359] (default: 0). This is an optional value.
0 commit comments