298 references to AnimatedTypeHelpers
PresentationCore (298)
Core\CSharp\System\Windows\Media\Animation\Generated\BooleanAnimationUsingKeyFrames.cs (2)
870totalLength += AnimatedTypeHelpers.GetSegmentLengthBoolean(prevKeyValue, currentKeyValue); 893totalLength += AnimatedTypeHelpers.GetSegmentLengthBoolean(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\ByteAnimation.cs (9)
306to = AnimatedTypeHelpers.AddByte(_keyValues[0], _keyValues[1]); 324&& !AnimatedTypeHelpers.IsValidAnimationValueByte(defaultOriginValue)) 335&& !AnimatedTypeHelpers.IsValidAnimationValueByte(defaultDestinationValue)) 352Byte accumulator = AnimatedTypeHelpers.SubtractByte(to, from); 354accumulated = AnimatedTypeHelpers.ScaleByte(accumulator, currentRepeat); 360return AnimatedTypeHelpers.AddByte( 362AnimatedTypeHelpers.AddByte( 364AnimatedTypeHelpers.InterpolateByte(from, to, progress))); 429return AnimatedTypeHelpers.IsValidAnimationValueByte(typedValue.Value);
Core\CSharp\System\Windows\Media\Animation\Generated\ByteAnimationUsingKeyFrames.cs (6)
409fromValue = AnimatedTypeHelpers.GetZeroValueByte(defaultOriginValue); 454currentIterationValue = AnimatedTypeHelpers.AddByte( 456AnimatedTypeHelpers.ScaleByte(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 463return AnimatedTypeHelpers.AddByte(defaultOriginValue, currentIterationValue); 962totalLength += AnimatedTypeHelpers.GetSegmentLengthByte(prevKeyValue, currentKeyValue); 985totalLength += AnimatedTypeHelpers.GetSegmentLengthByte(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\CharAnimationUsingKeyFrames.cs (2)
870totalLength += AnimatedTypeHelpers.GetSegmentLengthChar(prevKeyValue, currentKeyValue); 893totalLength += AnimatedTypeHelpers.GetSegmentLengthChar(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\ColorAnimation.cs (9)
306to = AnimatedTypeHelpers.AddColor(_keyValues[0], _keyValues[1]); 324&& !AnimatedTypeHelpers.IsValidAnimationValueColor(defaultOriginValue)) 335&& !AnimatedTypeHelpers.IsValidAnimationValueColor(defaultDestinationValue)) 352Color accumulator = AnimatedTypeHelpers.SubtractColor(to, from); 354accumulated = AnimatedTypeHelpers.ScaleColor(accumulator, currentRepeat); 360return AnimatedTypeHelpers.AddColor( 362AnimatedTypeHelpers.AddColor( 364AnimatedTypeHelpers.InterpolateColor(from, to, progress))); 429return AnimatedTypeHelpers.IsValidAnimationValueColor(typedValue.Value);
Core\CSharp\System\Windows\Media\Animation\Generated\ColorAnimationUsingKeyFrames.cs (6)
409fromValue = AnimatedTypeHelpers.GetZeroValueColor(defaultOriginValue); 454currentIterationValue = AnimatedTypeHelpers.AddColor( 456AnimatedTypeHelpers.ScaleColor(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 463return AnimatedTypeHelpers.AddColor(defaultOriginValue, currentIterationValue); 962totalLength += AnimatedTypeHelpers.GetSegmentLengthColor(prevKeyValue, currentKeyValue); 985totalLength += AnimatedTypeHelpers.GetSegmentLengthColor(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\DecimalAnimation.cs (9)
306to = AnimatedTypeHelpers.AddDecimal(_keyValues[0], _keyValues[1]); 324&& !AnimatedTypeHelpers.IsValidAnimationValueDecimal(defaultOriginValue)) 335&& !AnimatedTypeHelpers.IsValidAnimationValueDecimal(defaultDestinationValue)) 352Decimal accumulator = AnimatedTypeHelpers.SubtractDecimal(to, from); 354accumulated = AnimatedTypeHelpers.ScaleDecimal(accumulator, currentRepeat); 360return AnimatedTypeHelpers.AddDecimal( 362AnimatedTypeHelpers.AddDecimal( 364AnimatedTypeHelpers.InterpolateDecimal(from, to, progress))); 429return AnimatedTypeHelpers.IsValidAnimationValueDecimal(typedValue.Value);
Core\CSharp\System\Windows\Media\Animation\Generated\DecimalAnimationUsingKeyFrames.cs (6)
409fromValue = AnimatedTypeHelpers.GetZeroValueDecimal(defaultOriginValue); 454currentIterationValue = AnimatedTypeHelpers.AddDecimal( 456AnimatedTypeHelpers.ScaleDecimal(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 463return AnimatedTypeHelpers.AddDecimal(defaultOriginValue, currentIterationValue); 962totalLength += AnimatedTypeHelpers.GetSegmentLengthDecimal(prevKeyValue, currentKeyValue); 985totalLength += AnimatedTypeHelpers.GetSegmentLengthDecimal(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\DoubleAnimation.cs (9)
306to = AnimatedTypeHelpers.AddDouble(_keyValues[0], _keyValues[1]); 324&& !AnimatedTypeHelpers.IsValidAnimationValueDouble(defaultOriginValue)) 335&& !AnimatedTypeHelpers.IsValidAnimationValueDouble(defaultDestinationValue)) 352Double accumulator = AnimatedTypeHelpers.SubtractDouble(to, from); 354accumulated = AnimatedTypeHelpers.ScaleDouble(accumulator, currentRepeat); 360return AnimatedTypeHelpers.AddDouble( 362AnimatedTypeHelpers.AddDouble( 364AnimatedTypeHelpers.InterpolateDouble(from, to, progress))); 429return AnimatedTypeHelpers.IsValidAnimationValueDouble(typedValue.Value);
Core\CSharp\System\Windows\Media\Animation\Generated\DoubleAnimationUsingKeyFrames.cs (6)
409fromValue = AnimatedTypeHelpers.GetZeroValueDouble(defaultOriginValue); 454currentIterationValue = AnimatedTypeHelpers.AddDouble( 456AnimatedTypeHelpers.ScaleDouble(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 463return AnimatedTypeHelpers.AddDouble(defaultOriginValue, currentIterationValue); 962totalLength += AnimatedTypeHelpers.GetSegmentLengthDouble(prevKeyValue, currentKeyValue); 985totalLength += AnimatedTypeHelpers.GetSegmentLengthDouble(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (16)
117return AnimatedTypeHelpers.InterpolateByte(baseValue, Value, keyFrameProgress); 242return AnimatedTypeHelpers.InterpolateColor(baseValue, Value, keyFrameProgress); 367return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, keyFrameProgress); 492return AnimatedTypeHelpers.InterpolateDouble(baseValue, Value, keyFrameProgress); 617return AnimatedTypeHelpers.InterpolateInt16(baseValue, Value, keyFrameProgress); 742return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, keyFrameProgress); 867return AnimatedTypeHelpers.InterpolateInt64(baseValue, Value, keyFrameProgress); 992return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, keyFrameProgress); 1117return AnimatedTypeHelpers.InterpolatePoint3D(baseValue, Value, keyFrameProgress); 1242return AnimatedTypeHelpers.InterpolateQuaternion(baseValue, Value, keyFrameProgress, UseShortestPath); 1367return AnimatedTypeHelpers.InterpolateRotation3D(baseValue, Value, keyFrameProgress); 1492return AnimatedTypeHelpers.InterpolateRect(baseValue, Value, keyFrameProgress); 1617return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, keyFrameProgress); 1742return AnimatedTypeHelpers.InterpolateSize(baseValue, Value, keyFrameProgress); 1867return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, keyFrameProgress); 1992return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\Int16Animation.cs (9)
306to = AnimatedTypeHelpers.AddInt16(_keyValues[0], _keyValues[1]); 324&& !AnimatedTypeHelpers.IsValidAnimationValueInt16(defaultOriginValue)) 335&& !AnimatedTypeHelpers.IsValidAnimationValueInt16(defaultDestinationValue)) 352Int16 accumulator = AnimatedTypeHelpers.SubtractInt16(to, from); 354accumulated = AnimatedTypeHelpers.ScaleInt16(accumulator, currentRepeat); 360return AnimatedTypeHelpers.AddInt16( 362AnimatedTypeHelpers.AddInt16( 364AnimatedTypeHelpers.InterpolateInt16(from, to, progress))); 429return AnimatedTypeHelpers.IsValidAnimationValueInt16(typedValue.Value);
Core\CSharp\System\Windows\Media\Animation\Generated\Int16AnimationUsingKeyFrames.cs (6)
409fromValue = AnimatedTypeHelpers.GetZeroValueInt16(defaultOriginValue); 454currentIterationValue = AnimatedTypeHelpers.AddInt16( 456AnimatedTypeHelpers.ScaleInt16(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 463return AnimatedTypeHelpers.AddInt16(defaultOriginValue, currentIterationValue); 962totalLength += AnimatedTypeHelpers.GetSegmentLengthInt16(prevKeyValue, currentKeyValue); 985totalLength += AnimatedTypeHelpers.GetSegmentLengthInt16(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\Int32Animation.cs (9)
306to = AnimatedTypeHelpers.AddInt32(_keyValues[0], _keyValues[1]); 324&& !AnimatedTypeHelpers.IsValidAnimationValueInt32(defaultOriginValue)) 335&& !AnimatedTypeHelpers.IsValidAnimationValueInt32(defaultDestinationValue)) 352Int32 accumulator = AnimatedTypeHelpers.SubtractInt32(to, from); 354accumulated = AnimatedTypeHelpers.ScaleInt32(accumulator, currentRepeat); 360return AnimatedTypeHelpers.AddInt32( 362AnimatedTypeHelpers.AddInt32( 364AnimatedTypeHelpers.InterpolateInt32(from, to, progress))); 429return AnimatedTypeHelpers.IsValidAnimationValueInt32(typedValue.Value);
Core\CSharp\System\Windows\Media\Animation\Generated\Int32AnimationUsingKeyFrames.cs (6)
409fromValue = AnimatedTypeHelpers.GetZeroValueInt32(defaultOriginValue); 454currentIterationValue = AnimatedTypeHelpers.AddInt32( 456AnimatedTypeHelpers.ScaleInt32(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 463return AnimatedTypeHelpers.AddInt32(defaultOriginValue, currentIterationValue); 962totalLength += AnimatedTypeHelpers.GetSegmentLengthInt32(prevKeyValue, currentKeyValue); 985totalLength += AnimatedTypeHelpers.GetSegmentLengthInt32(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\Int64Animation.cs (9)
306to = AnimatedTypeHelpers.AddInt64(_keyValues[0], _keyValues[1]); 324&& !AnimatedTypeHelpers.IsValidAnimationValueInt64(defaultOriginValue)) 335&& !AnimatedTypeHelpers.IsValidAnimationValueInt64(defaultDestinationValue)) 352Int64 accumulator = AnimatedTypeHelpers.SubtractInt64(to, from); 354accumulated = AnimatedTypeHelpers.ScaleInt64(accumulator, currentRepeat); 360return AnimatedTypeHelpers.AddInt64( 362AnimatedTypeHelpers.AddInt64( 364AnimatedTypeHelpers.InterpolateInt64(from, to, progress))); 429return AnimatedTypeHelpers.IsValidAnimationValueInt64(typedValue.Value);
Core\CSharp\System\Windows\Media\Animation\Generated\Int64AnimationUsingKeyFrames.cs (6)
409fromValue = AnimatedTypeHelpers.GetZeroValueInt64(defaultOriginValue); 454currentIterationValue = AnimatedTypeHelpers.AddInt64( 456AnimatedTypeHelpers.ScaleInt64(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 463return AnimatedTypeHelpers.AddInt64(defaultOriginValue, currentIterationValue); 962totalLength += AnimatedTypeHelpers.GetSegmentLengthInt64(prevKeyValue, currentKeyValue); 985totalLength += AnimatedTypeHelpers.GetSegmentLengthInt64(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (16)
97return AnimatedTypeHelpers.InterpolateByte(baseValue, Value, keyFrameProgress); 174return AnimatedTypeHelpers.InterpolateColor(baseValue, Value, keyFrameProgress); 251return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, keyFrameProgress); 328return AnimatedTypeHelpers.InterpolateDouble(baseValue, Value, keyFrameProgress); 405return AnimatedTypeHelpers.InterpolateInt16(baseValue, Value, keyFrameProgress); 482return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, keyFrameProgress); 559return AnimatedTypeHelpers.InterpolateInt64(baseValue, Value, keyFrameProgress); 636return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, keyFrameProgress); 713return AnimatedTypeHelpers.InterpolatePoint3D(baseValue, Value, keyFrameProgress); 790return AnimatedTypeHelpers.InterpolateQuaternion(baseValue, Value, keyFrameProgress, UseShortestPath); 867return AnimatedTypeHelpers.InterpolateRotation3D(baseValue, Value, keyFrameProgress); 944return AnimatedTypeHelpers.InterpolateRect(baseValue, Value, keyFrameProgress); 1021return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, keyFrameProgress); 1098return AnimatedTypeHelpers.InterpolateSize(baseValue, Value, keyFrameProgress); 1175return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, keyFrameProgress); 1252return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\MatrixAnimationUsingKeyFrames.cs (2)
870totalLength += AnimatedTypeHelpers.GetSegmentLengthMatrix(prevKeyValue, currentKeyValue); 893totalLength += AnimatedTypeHelpers.GetSegmentLengthMatrix(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (2)
870totalLength += AnimatedTypeHelpers.GetSegmentLengthObject(prevKeyValue, currentKeyValue); 893totalLength += AnimatedTypeHelpers.GetSegmentLengthObject(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\Point3DAnimation.cs (9)
306to = AnimatedTypeHelpers.AddPoint3D(_keyValues[0], _keyValues[1]); 324&& !AnimatedTypeHelpers.IsValidAnimationValuePoint3D(defaultOriginValue)) 335&& !AnimatedTypeHelpers.IsValidAnimationValuePoint3D(defaultDestinationValue)) 352Point3D accumulator = AnimatedTypeHelpers.SubtractPoint3D(to, from); 354accumulated = AnimatedTypeHelpers.ScalePoint3D(accumulator, currentRepeat); 360return AnimatedTypeHelpers.AddPoint3D( 362AnimatedTypeHelpers.AddPoint3D( 364AnimatedTypeHelpers.InterpolatePoint3D(from, to, progress))); 429return AnimatedTypeHelpers.IsValidAnimationValuePoint3D(typedValue.Value);
Core\CSharp\System\Windows\Media\Animation\Generated\Point3DAnimationUsingKeyFrames.cs (6)
409fromValue = AnimatedTypeHelpers.GetZeroValuePoint3D(defaultOriginValue); 454currentIterationValue = AnimatedTypeHelpers.AddPoint3D( 456AnimatedTypeHelpers.ScalePoint3D(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 463return AnimatedTypeHelpers.AddPoint3D(defaultOriginValue, currentIterationValue); 962totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint3D(prevKeyValue, currentKeyValue); 985totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint3D(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\PointAnimation.cs (9)
306to = AnimatedTypeHelpers.AddPoint(_keyValues[0], _keyValues[1]); 324&& !AnimatedTypeHelpers.IsValidAnimationValuePoint(defaultOriginValue)) 335&& !AnimatedTypeHelpers.IsValidAnimationValuePoint(defaultDestinationValue)) 352Point accumulator = AnimatedTypeHelpers.SubtractPoint(to, from); 354accumulated = AnimatedTypeHelpers.ScalePoint(accumulator, currentRepeat); 360return AnimatedTypeHelpers.AddPoint( 362AnimatedTypeHelpers.AddPoint( 364AnimatedTypeHelpers.InterpolatePoint(from, to, progress))); 429return AnimatedTypeHelpers.IsValidAnimationValuePoint(typedValue.Value);
Core\CSharp\System\Windows\Media\Animation\Generated\PointAnimationUsingKeyFrames.cs (6)
409fromValue = AnimatedTypeHelpers.GetZeroValuePoint(defaultOriginValue); 454currentIterationValue = AnimatedTypeHelpers.AddPoint( 456AnimatedTypeHelpers.ScalePoint(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 463return AnimatedTypeHelpers.AddPoint(defaultOriginValue, currentIterationValue); 962totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint(prevKeyValue, currentKeyValue); 985totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\QuaternionAnimation.cs (9)
306to = AnimatedTypeHelpers.AddQuaternion(_keyValues[0], _keyValues[1]); 324&& !AnimatedTypeHelpers.IsValidAnimationValueQuaternion(defaultOriginValue)) 335&& !AnimatedTypeHelpers.IsValidAnimationValueQuaternion(defaultDestinationValue)) 352Quaternion accumulator = AnimatedTypeHelpers.SubtractQuaternion(to, from); 354accumulated = AnimatedTypeHelpers.ScaleQuaternion(accumulator, currentRepeat); 360return AnimatedTypeHelpers.AddQuaternion( 362AnimatedTypeHelpers.AddQuaternion( 364AnimatedTypeHelpers.InterpolateQuaternion(from, to, progress, UseShortestPath))); 429return AnimatedTypeHelpers.IsValidAnimationValueQuaternion(typedValue.Value);
Core\CSharp\System\Windows\Media\Animation\Generated\QuaternionAnimationUsingKeyFrames.cs (6)
409fromValue = AnimatedTypeHelpers.GetZeroValueQuaternion(defaultOriginValue); 454currentIterationValue = AnimatedTypeHelpers.AddQuaternion( 456AnimatedTypeHelpers.ScaleQuaternion(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 463return AnimatedTypeHelpers.AddQuaternion(defaultOriginValue, currentIterationValue); 962totalLength += AnimatedTypeHelpers.GetSegmentLengthQuaternion(prevKeyValue, currentKeyValue); 985totalLength += AnimatedTypeHelpers.GetSegmentLengthQuaternion(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\RectAnimation.cs (9)
306to = AnimatedTypeHelpers.AddRect(_keyValues[0], _keyValues[1]); 324&& !AnimatedTypeHelpers.IsValidAnimationValueRect(defaultOriginValue)) 335&& !AnimatedTypeHelpers.IsValidAnimationValueRect(defaultDestinationValue)) 352Rect accumulator = AnimatedTypeHelpers.SubtractRect(to, from); 354accumulated = AnimatedTypeHelpers.ScaleRect(accumulator, currentRepeat); 360return AnimatedTypeHelpers.AddRect( 362AnimatedTypeHelpers.AddRect( 364AnimatedTypeHelpers.InterpolateRect(from, to, progress))); 429return AnimatedTypeHelpers.IsValidAnimationValueRect(typedValue.Value);
Core\CSharp\System\Windows\Media\Animation\Generated\RectAnimationUsingKeyFrames.cs (6)
409fromValue = AnimatedTypeHelpers.GetZeroValueRect(defaultOriginValue); 454currentIterationValue = AnimatedTypeHelpers.AddRect( 456AnimatedTypeHelpers.ScaleRect(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 463return AnimatedTypeHelpers.AddRect(defaultOriginValue, currentIterationValue); 962totalLength += AnimatedTypeHelpers.GetSegmentLengthRect(prevKeyValue, currentKeyValue); 985totalLength += AnimatedTypeHelpers.GetSegmentLengthRect(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\Rotation3DAnimation.cs (9)
306to = AnimatedTypeHelpers.AddRotation3D(_keyValues[0], _keyValues[1]); 324&& !AnimatedTypeHelpers.IsValidAnimationValueRotation3D(defaultOriginValue)) 335&& !AnimatedTypeHelpers.IsValidAnimationValueRotation3D(defaultDestinationValue)) 352Rotation3D accumulator = AnimatedTypeHelpers.SubtractRotation3D(to, from); 354accumulated = AnimatedTypeHelpers.ScaleRotation3D(accumulator, currentRepeat); 360return AnimatedTypeHelpers.AddRotation3D( 362AnimatedTypeHelpers.AddRotation3D( 364AnimatedTypeHelpers.InterpolateRotation3D(from, to, progress))); 429return AnimatedTypeHelpers.IsValidAnimationValueRotation3D(typedValue);
Core\CSharp\System\Windows\Media\Animation\Generated\Rotation3DAnimationUsingKeyFrames.cs (6)
409fromValue = AnimatedTypeHelpers.GetZeroValueRotation3D(defaultOriginValue); 454currentIterationValue = AnimatedTypeHelpers.AddRotation3D( 456AnimatedTypeHelpers.ScaleRotation3D(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 463return AnimatedTypeHelpers.AddRotation3D(defaultOriginValue, currentIterationValue); 962totalLength += AnimatedTypeHelpers.GetSegmentLengthRotation3D(prevKeyValue, currentKeyValue); 985totalLength += AnimatedTypeHelpers.GetSegmentLengthRotation3D(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\SingleAnimation.cs (9)
306to = AnimatedTypeHelpers.AddSingle(_keyValues[0], _keyValues[1]); 324&& !AnimatedTypeHelpers.IsValidAnimationValueSingle(defaultOriginValue)) 335&& !AnimatedTypeHelpers.IsValidAnimationValueSingle(defaultDestinationValue)) 352Single accumulator = AnimatedTypeHelpers.SubtractSingle(to, from); 354accumulated = AnimatedTypeHelpers.ScaleSingle(accumulator, currentRepeat); 360return AnimatedTypeHelpers.AddSingle( 362AnimatedTypeHelpers.AddSingle( 364AnimatedTypeHelpers.InterpolateSingle(from, to, progress))); 429return AnimatedTypeHelpers.IsValidAnimationValueSingle(typedValue.Value);
Core\CSharp\System\Windows\Media\Animation\Generated\SingleAnimationUsingKeyFrames.cs (6)
409fromValue = AnimatedTypeHelpers.GetZeroValueSingle(defaultOriginValue); 454currentIterationValue = AnimatedTypeHelpers.AddSingle( 456AnimatedTypeHelpers.ScaleSingle(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 463return AnimatedTypeHelpers.AddSingle(defaultOriginValue, currentIterationValue); 962totalLength += AnimatedTypeHelpers.GetSegmentLengthSingle(prevKeyValue, currentKeyValue); 985totalLength += AnimatedTypeHelpers.GetSegmentLengthSingle(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\SizeAnimation.cs (9)
306to = AnimatedTypeHelpers.AddSize(_keyValues[0], _keyValues[1]); 324&& !AnimatedTypeHelpers.IsValidAnimationValueSize(defaultOriginValue)) 335&& !AnimatedTypeHelpers.IsValidAnimationValueSize(defaultDestinationValue)) 352Size accumulator = AnimatedTypeHelpers.SubtractSize(to, from); 354accumulated = AnimatedTypeHelpers.ScaleSize(accumulator, currentRepeat); 360return AnimatedTypeHelpers.AddSize( 362AnimatedTypeHelpers.AddSize( 364AnimatedTypeHelpers.InterpolateSize(from, to, progress))); 429return AnimatedTypeHelpers.IsValidAnimationValueSize(typedValue.Value);
Core\CSharp\System\Windows\Media\Animation\Generated\SizeAnimationUsingKeyFrames.cs (6)
409fromValue = AnimatedTypeHelpers.GetZeroValueSize(defaultOriginValue); 454currentIterationValue = AnimatedTypeHelpers.AddSize( 456AnimatedTypeHelpers.ScaleSize(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 463return AnimatedTypeHelpers.AddSize(defaultOriginValue, currentIterationValue); 962totalLength += AnimatedTypeHelpers.GetSegmentLengthSize(prevKeyValue, currentKeyValue); 985totalLength += AnimatedTypeHelpers.GetSegmentLengthSize(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (16)
118return AnimatedTypeHelpers.InterpolateByte(baseValue, Value, splineProgress); 251return AnimatedTypeHelpers.InterpolateColor(baseValue, Value, splineProgress); 384return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, splineProgress); 517return AnimatedTypeHelpers.InterpolateDouble(baseValue, Value, splineProgress); 650return AnimatedTypeHelpers.InterpolateInt16(baseValue, Value, splineProgress); 783return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, splineProgress); 916return AnimatedTypeHelpers.InterpolateInt64(baseValue, Value, splineProgress); 1049return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, splineProgress); 1182return AnimatedTypeHelpers.InterpolatePoint3D(baseValue, Value, splineProgress); 1315return AnimatedTypeHelpers.InterpolateQuaternion(baseValue, Value, splineProgress, UseShortestPath); 1448return AnimatedTypeHelpers.InterpolateRotation3D(baseValue, Value, splineProgress); 1581return AnimatedTypeHelpers.InterpolateRect(baseValue, Value, splineProgress); 1714return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, splineProgress); 1847return AnimatedTypeHelpers.InterpolateSize(baseValue, Value, splineProgress); 1980return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, splineProgress); 2113return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, splineProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\StringAnimationUsingKeyFrames.cs (2)
870totalLength += AnimatedTypeHelpers.GetSegmentLengthString(prevKeyValue, currentKeyValue); 893totalLength += AnimatedTypeHelpers.GetSegmentLengthString(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\Vector3DAnimation.cs (9)
306to = AnimatedTypeHelpers.AddVector3D(_keyValues[0], _keyValues[1]); 324&& !AnimatedTypeHelpers.IsValidAnimationValueVector3D(defaultOriginValue)) 335&& !AnimatedTypeHelpers.IsValidAnimationValueVector3D(defaultDestinationValue)) 352Vector3D accumulator = AnimatedTypeHelpers.SubtractVector3D(to, from); 354accumulated = AnimatedTypeHelpers.ScaleVector3D(accumulator, currentRepeat); 360return AnimatedTypeHelpers.AddVector3D( 362AnimatedTypeHelpers.AddVector3D( 364AnimatedTypeHelpers.InterpolateVector3D(from, to, progress))); 429return AnimatedTypeHelpers.IsValidAnimationValueVector3D(typedValue.Value);
Core\CSharp\System\Windows\Media\Animation\Generated\Vector3DAnimationUsingKeyFrames.cs (6)
409fromValue = AnimatedTypeHelpers.GetZeroValueVector3D(defaultOriginValue); 454currentIterationValue = AnimatedTypeHelpers.AddVector3D( 456AnimatedTypeHelpers.ScaleVector3D(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 463return AnimatedTypeHelpers.AddVector3D(defaultOriginValue, currentIterationValue); 962totalLength += AnimatedTypeHelpers.GetSegmentLengthVector3D(prevKeyValue, currentKeyValue); 985totalLength += AnimatedTypeHelpers.GetSegmentLengthVector3D(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\VectorAnimation.cs (9)
306to = AnimatedTypeHelpers.AddVector(_keyValues[0], _keyValues[1]); 324&& !AnimatedTypeHelpers.IsValidAnimationValueVector(defaultOriginValue)) 335&& !AnimatedTypeHelpers.IsValidAnimationValueVector(defaultDestinationValue)) 352Vector accumulator = AnimatedTypeHelpers.SubtractVector(to, from); 354accumulated = AnimatedTypeHelpers.ScaleVector(accumulator, currentRepeat); 360return AnimatedTypeHelpers.AddVector( 362AnimatedTypeHelpers.AddVector( 364AnimatedTypeHelpers.InterpolateVector(from, to, progress))); 429return AnimatedTypeHelpers.IsValidAnimationValueVector(typedValue.Value);
Core\CSharp\System\Windows\Media\Animation\Generated\VectorAnimationUsingKeyFrames.cs (6)
409fromValue = AnimatedTypeHelpers.GetZeroValueVector(defaultOriginValue); 454currentIterationValue = AnimatedTypeHelpers.AddVector( 456AnimatedTypeHelpers.ScaleVector(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 463return AnimatedTypeHelpers.AddVector(defaultOriginValue, currentIterationValue); 962totalLength += AnimatedTypeHelpers.GetSegmentLengthVector(prevKeyValue, currentKeyValue); 985totalLength += AnimatedTypeHelpers.GetSegmentLengthVector(prevKeyValue, _keyFrames[index].Value);