18 references to AnimatedTypeHelpers
PresentationFramework (18)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (1)
104return AnimatedTypeHelpers.InterpolateThickness(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (1)
84return AnimatedTypeHelpers.InterpolateThickness(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (1)
102return AnimatedTypeHelpers.InterpolateThickness(baseValue, Value, splineProgress);
System\Windows\Media\Animation\Generated\ThicknessAnimation.cs (9)
292to = AnimatedTypeHelpers.AddThickness(_keyValues[0], _keyValues[1]); 310&& !AnimatedTypeHelpers.IsValidAnimationValueThickness(defaultOriginValue)) 321&& !AnimatedTypeHelpers.IsValidAnimationValueThickness(defaultDestinationValue)) 338Thickness accumulator = AnimatedTypeHelpers.SubtractThickness(to, from); 340accumulated = AnimatedTypeHelpers.ScaleThickness(accumulator, currentRepeat); 346return AnimatedTypeHelpers.AddThickness( 348AnimatedTypeHelpers.AddThickness( 350AnimatedTypeHelpers.InterpolateThickness(from, to, progress))); 415return 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); 940totalLength += AnimatedTypeHelpers.GetSegmentLengthThickness(prevKeyValue, currentKeyValue); 963totalLength += AnimatedTypeHelpers.GetSegmentLengthThickness(prevKeyValue, _keyFrames[index].Value);