Skip to content

Commit 590409a

Browse files
committed
Reapply change from b5e6d8f
1 parent a71107f commit 590409a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Microsoft.Toolkit.Uwp.UI.Controls/OrbitView/OrbitView.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ private Line CreateAnchor(UIElement element, double x, double y)
669669
anchorVisual.StartAnimation(nameof(anchorVisual.Offset), offsetExpression);
670670

671671
var scaleExpression = _compositor.CreateExpressionAnimation();
672-
scaleExpression.Expression = $"Vector3(Pow(Pow({elementX} - {centerX}, 2) + Pow({elementY} - {centerY}, 2), 0.5)/100, 1, 1)";
672+
scaleExpression.Expression = $"Vector3(Pow(Pow({elementX} - {centerX}, 2) + Pow({elementY} - {centerY}, 2), 0.5)/80, 1, 1)";
673673
scaleExpression.SetReferenceParameter("centerVisual", centerVisual);
674674
scaleExpression.SetReferenceParameter("elementVisual", elementVisual);
675675
anchorVisual.StartAnimation(nameof(anchorVisual.Scale), scaleExpression);

0 commit comments

Comments
 (0)