Skip to content

Commit

Permalink
chore: remove pointer defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
jrandolf-2 committed Feb 20, 2024
1 parent 42abefe commit 1c70c3e
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -10340,14 +10340,19 @@ specified sequence of user input actions.
}

input.PointerCommonProperties = (
? width: js-uint .default 1,
? height: js-uint .default 1,
? pressure: float .default 0.0,
? tangentialPressure: float .default 0.0,
; Defaults to 1
? width: js-uint,
; Defaults to 1
? height: js-uint,
; Defaults to 0.0
? pressure: float,
; Defaults to 0.0
? tangentialPressure: float,
; Defaults to 0
? twist: (0..359) .default 0,
; 0 .. Math.PI / 2
? altitudeAngle: (0.0..1.5707963267948966) .default 0.0,
; 0 .. 2 * Math.PI
; 0 .. Math.PI / 2, defaults to 0.0
? altitudeAngle: (0.0..1.5707963267948966),
; 0 .. 2 * Math.PI, defaults to 0.0
? azimuthAngle: (0.0..6.283185307179586) .default 0.0,
)

Expand Down

0 comments on commit 1c70c3e

Please sign in to comment.