18 references to AnimatedTypeHelpers
PresentationFramework (18)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (1)
108return AnimatedTypeHelpers.InterpolateThickness(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (1)
88return 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)
293to = AnimatedTypeHelpers.AddThickness(_keyValues[0], _keyValues[1]); 311&& !AnimatedTypeHelpers.IsValidAnimationValueThickness(defaultOriginValue)) 322&& !AnimatedTypeHelpers.IsValidAnimationValueThickness(defaultDestinationValue)) 339Thickness accumulator = AnimatedTypeHelpers.SubtractThickness(to, from); 341accumulated = AnimatedTypeHelpers.ScaleThickness(accumulator, currentRepeat); 347return AnimatedTypeHelpers.AddThickness( 349AnimatedTypeHelpers.AddThickness( 351AnimatedTypeHelpers.InterpolateThickness(from, to, progress))); 416return AnimatedTypeHelpers.IsValidAnimationValueThickness(typedValue.Value);
System\Windows\Media\Animation\Generated\ThicknessAnimationUsingKeyFrames.cs (6)
390fromValue = AnimatedTypeHelpers.GetZeroValueThickness(defaultOriginValue); 435currentIterationValue = AnimatedTypeHelpers.AddThickness( 437AnimatedTypeHelpers.ScaleThickness(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 444return AnimatedTypeHelpers.AddThickness(defaultOriginValue, currentIterationValue); 942totalLength += AnimatedTypeHelpers.GetSegmentLengthThickness(prevKeyValue, currentKeyValue); 965totalLength += AnimatedTypeHelpers.GetSegmentLengthThickness(prevKeyValue, _keyFrames[index].Value);