Skip to content

Commit fbf070f

Browse files
chore: remove pointer defaults
1 parent 42abefe commit fbf070f

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

index.bs

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10317,7 +10317,7 @@ specified sequence of user input actions.
1031710317
input.PointerDownAction = {
1031810318
type: "pointerDown",
1031910319
button: js-uint,
10320-
input.PointerCommonProperties
10320+
input.PointerCommonPropertiesWithDefaults
1032110321
}
1032210322

1032310323
input.PointerMoveAction = {
@@ -10340,6 +10340,18 @@ specified sequence of user input actions.
1034010340
}
1034110341

1034210342
input.PointerCommonProperties = (
10343+
? width: js-uint,
10344+
? height: js-uint,
10345+
? pressure: float,
10346+
? tangentialPressure: float,
10347+
? twist: 0..359,
10348+
; 0 .. Math.PI / 2
10349+
? altitudeAngle: 0.0..1.5707963267948966
10350+
; 0 .. 2 * Math.PI
10351+
? azimuthAngle: 0.0..6.283185307179586,
10352+
)
10353+
10354+
input.PointerCommonPropertiesWithDefaults = (
1034310355
? width: js-uint .default 1,
1034410356
? height: js-uint .default 1,
1034510357
? pressure: float .default 0.0,

0 commit comments

Comments
 (0)