Skip to content

Commit 3b7363b

Browse files
committed
chore: Avoid conflict with Vector2Extensions
1 parent 3063947 commit 3b7363b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Uno.UWP/UI/Input/GestureRecognizer.Manipulation.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
using Windows.System;
1212
using Uno;
1313
using Uno.Disposables;
14-
using Uno.Extensions;
1514
using Uno.Foundation.Logging;
1615

1716
#if HAS_UNO_WINUI && IS_UNO_UI_PROJECT
@@ -429,7 +428,7 @@ private ManipulationDelta GetCumulative()
429428
float scale, expansion;
430429
if (_currents.HasPointer2)
431430
{
432-
rotation = _isRotateEnabled ? MathEx.ToDegree(_currents.Angle - _origins.Angle) : 0;
431+
rotation = _isRotateEnabled ? Uno.Extensions.MathEx.ToDegree(_currents.Angle - _origins.Angle) : 0;
433432
scale = _isScaleEnabled ? _currents.Distance / _origins.Distance : 1;
434433
expansion = _isScaleEnabled ? _currents.Distance - _origins.Distance : 0;
435434

0 commit comments

Comments
 (0)