18 references to AnimatedTypeHelpers
PresentationFramework (18)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (1)
109return AnimatedTypeHelpers.InterpolateThickness(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (1)
89return AnimatedTypeHelpers.InterpolateThickness(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (1)
112return AnimatedTypeHelpers.InterpolateThickness(baseValue, Value, splineProgress);
System\Windows\Media\Animation\Generated\ThicknessAnimation.cs (9)
294to = AnimatedTypeHelpers.AddThickness(_keyValues[0], _keyValues[1]); 312&& !AnimatedTypeHelpers.IsValidAnimationValueThickness(defaultOriginValue)) 323&& !AnimatedTypeHelpers.IsValidAnimationValueThickness(defaultDestinationValue)) 340Thickness accumulator = AnimatedTypeHelpers.SubtractThickness(to, from); 342accumulated = AnimatedTypeHelpers.ScaleThickness(accumulator, currentRepeat); 348return AnimatedTypeHelpers.AddThickness( 350AnimatedTypeHelpers.AddThickness( 352AnimatedTypeHelpers.InterpolateThickness(from, to, progress))); 417return AnimatedTypeHelpers.IsValidAnimationValueThickness(typedValue.Value);
System\Windows\Media\Animation\Generated\ThicknessAnimationUsingKeyFrames.cs (6)
391fromValue = AnimatedTypeHelpers.GetZeroValueThickness(defaultOriginValue); 436currentIterationValue = AnimatedTypeHelpers.AddThickness( 438AnimatedTypeHelpers.ScaleThickness(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 445return AnimatedTypeHelpers.AddThickness(defaultOriginValue, currentIterationValue); 943totalLength += AnimatedTypeHelpers.GetSegmentLengthThickness(prevKeyValue, currentKeyValue); 966totalLength += AnimatedTypeHelpers.GetSegmentLengthThickness(prevKeyValue, _keyFrames[index].Value);