18 references to AnimatedTypeHelpers
PresentationFramework (18)
src\Framework\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (1)
117
return
AnimatedTypeHelpers
.InterpolateThickness(baseValue, Value, keyFrameProgress);
src\Framework\System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (1)
97
return
AnimatedTypeHelpers
.InterpolateThickness(baseValue, Value, keyFrameProgress);
src\Framework\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (1)
118
return
AnimatedTypeHelpers
.InterpolateThickness(baseValue, Value, splineProgress);
src\Framework\System\Windows\Media\Animation\Generated\ThicknessAnimation.cs (9)
306
to =
AnimatedTypeHelpers
.AddThickness(_keyValues[0], _keyValues[1]);
324
&& !
AnimatedTypeHelpers
.IsValidAnimationValueThickness(defaultOriginValue))
335
&& !
AnimatedTypeHelpers
.IsValidAnimationValueThickness(defaultDestinationValue))
352
Thickness accumulator =
AnimatedTypeHelpers
.SubtractThickness(to, from);
354
accumulated =
AnimatedTypeHelpers
.ScaleThickness(accumulator, currentRepeat);
360
return
AnimatedTypeHelpers
.AddThickness(
362
AnimatedTypeHelpers
.AddThickness(
364
AnimatedTypeHelpers
.InterpolateThickness(from, to, progress)));
429
return
AnimatedTypeHelpers
.IsValidAnimationValueThickness(typedValue.Value);
src\Framework\System\Windows\Media\Animation\Generated\ThicknessAnimationUsingKeyFrames.cs (6)
409
fromValue =
AnimatedTypeHelpers
.GetZeroValueThickness(defaultOriginValue);
454
currentIterationValue =
AnimatedTypeHelpers
.AddThickness(
456
AnimatedTypeHelpers
.ScaleThickness(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat));
463
return
AnimatedTypeHelpers
.AddThickness(defaultOriginValue, currentIterationValue);
962
totalLength +=
AnimatedTypeHelpers
.GetSegmentLengthThickness(prevKeyValue, currentKeyValue);
985
totalLength +=
AnimatedTypeHelpers
.GetSegmentLengthThickness(prevKeyValue, _keyFrames[index].Value);