18 references to AnimatedTypeHelpers
PresentationFramework (18)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (1)
113return AnimatedTypeHelpers.InterpolateThickness(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (1)
93return AnimatedTypeHelpers.InterpolateThickness(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (1)
111return AnimatedTypeHelpers.InterpolateThickness(baseValue, Value, splineProgress);
System\Windows\Media\Animation\Generated\ThicknessAnimation.cs (9)
303to = AnimatedTypeHelpers.AddThickness(_keyValues[0], _keyValues[1]); 321&& !AnimatedTypeHelpers.IsValidAnimationValueThickness(defaultOriginValue)) 332&& !AnimatedTypeHelpers.IsValidAnimationValueThickness(defaultDestinationValue)) 349Thickness accumulator = AnimatedTypeHelpers.SubtractThickness(to, from); 351accumulated = AnimatedTypeHelpers.ScaleThickness(accumulator, currentRepeat); 357return AnimatedTypeHelpers.AddThickness( 359AnimatedTypeHelpers.AddThickness( 361AnimatedTypeHelpers.InterpolateThickness(from, to, progress))); 426return AnimatedTypeHelpers.IsValidAnimationValueThickness(typedValue.Value);
System\Windows\Media\Animation\Generated\ThicknessAnimationUsingKeyFrames.cs (6)
400fromValue = AnimatedTypeHelpers.GetZeroValueThickness(defaultOriginValue); 445currentIterationValue = AnimatedTypeHelpers.AddThickness( 447AnimatedTypeHelpers.ScaleThickness(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 454return AnimatedTypeHelpers.AddThickness(defaultOriginValue, currentIterationValue); 950totalLength += AnimatedTypeHelpers.GetSegmentLengthThickness(prevKeyValue, currentKeyValue); 973totalLength += AnimatedTypeHelpers.GetSegmentLengthThickness(prevKeyValue, _keyFrames[index].Value);