We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3063947 commit 3b7363bCopy full SHA for 3b7363b
src/Uno.UWP/UI/Input/GestureRecognizer.Manipulation.cs
@@ -11,7 +11,6 @@
11
using Windows.System;
12
using Uno;
13
using Uno.Disposables;
14
-using Uno.Extensions;
15
using Uno.Foundation.Logging;
16
17
#if HAS_UNO_WINUI && IS_UNO_UI_PROJECT
@@ -429,7 +428,7 @@ private ManipulationDelta GetCumulative()
429
428
float scale, expansion;
430
if (_currents.HasPointer2)
431
{
432
- rotation = _isRotateEnabled ? MathEx.ToDegree(_currents.Angle - _origins.Angle) : 0;
+ rotation = _isRotateEnabled ? Uno.Extensions.MathEx.ToDegree(_currents.Angle - _origins.Angle) : 0;
433
scale = _isScaleEnabled ? _currents.Distance / _origins.Distance : 1;
434
expansion = _isScaleEnabled ? _currents.Distance - _origins.Distance : 0;
435
0 commit comments