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 bc88960
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -10340,15 +10340,15 @@ 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,
? twist: (0..359) .default 0,
? width: js-uint,
? height: js-uint,
? pressure: float,
? tangentialPressure: float,
? twist: 0..359,
; 0 .. Math.PI / 2
? altitudeAngle: (0.0..1.5707963267948966) .default 0.0,
? altitudeAngle: 0.0..1.5707963267948966
; 0 .. 2 * Math.PI
? azimuthAngle: (0.0..6.283185307179586) .default 0.0,
? azimuthAngle: 0.0..6.283185307179586,
)

input.Origin = "viewport" / "pointer" / input.ElementOrigin
Expand Down

0 comments on commit bc88960

Please sign in to comment.