298 references to AnimatedTypeHelpers
PresentationCore (298)
System\Windows\Media\Animation\Generated\BooleanAnimationUsingKeyFrames.cs (2)
851totalLength += AnimatedTypeHelpers.GetSegmentLengthBoolean(prevKeyValue, currentKeyValue); 874totalLength += AnimatedTypeHelpers.GetSegmentLengthBoolean(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\ByteAnimation.cs (9)
294to = AnimatedTypeHelpers.AddByte(_keyValues[0], _keyValues[1]); 312&& !AnimatedTypeHelpers.IsValidAnimationValueByte(defaultOriginValue)) 323&& !AnimatedTypeHelpers.IsValidAnimationValueByte(defaultDestinationValue)) 340Byte accumulator = AnimatedTypeHelpers.SubtractByte(to, from); 342accumulated = AnimatedTypeHelpers.ScaleByte(accumulator, currentRepeat); 348return AnimatedTypeHelpers.AddByte( 350AnimatedTypeHelpers.AddByte( 352AnimatedTypeHelpers.InterpolateByte(from, to, progress))); 417return AnimatedTypeHelpers.IsValidAnimationValueByte(typedValue.Value);
System\Windows\Media\Animation\Generated\ByteAnimationUsingKeyFrames.cs (6)
391fromValue = AnimatedTypeHelpers.GetZeroValueByte(defaultOriginValue); 436currentIterationValue = AnimatedTypeHelpers.AddByte( 438AnimatedTypeHelpers.ScaleByte(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 445return AnimatedTypeHelpers.AddByte(defaultOriginValue, currentIterationValue); 943totalLength += AnimatedTypeHelpers.GetSegmentLengthByte(prevKeyValue, currentKeyValue); 966totalLength += AnimatedTypeHelpers.GetSegmentLengthByte(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\CharAnimationUsingKeyFrames.cs (2)
851totalLength += AnimatedTypeHelpers.GetSegmentLengthChar(prevKeyValue, currentKeyValue); 874totalLength += AnimatedTypeHelpers.GetSegmentLengthChar(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\ColorAnimation.cs (9)
294to = AnimatedTypeHelpers.AddColor(_keyValues[0], _keyValues[1]); 312&& !AnimatedTypeHelpers.IsValidAnimationValueColor(defaultOriginValue)) 323&& !AnimatedTypeHelpers.IsValidAnimationValueColor(defaultDestinationValue)) 340Color accumulator = AnimatedTypeHelpers.SubtractColor(to, from); 342accumulated = AnimatedTypeHelpers.ScaleColor(accumulator, currentRepeat); 348return AnimatedTypeHelpers.AddColor( 350AnimatedTypeHelpers.AddColor( 352AnimatedTypeHelpers.InterpolateColor(from, to, progress))); 417return AnimatedTypeHelpers.IsValidAnimationValueColor(typedValue.Value);
System\Windows\Media\Animation\Generated\ColorAnimationUsingKeyFrames.cs (6)
391fromValue = AnimatedTypeHelpers.GetZeroValueColor(defaultOriginValue); 436currentIterationValue = AnimatedTypeHelpers.AddColor( 438AnimatedTypeHelpers.ScaleColor(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 445return AnimatedTypeHelpers.AddColor(defaultOriginValue, currentIterationValue); 943totalLength += AnimatedTypeHelpers.GetSegmentLengthColor(prevKeyValue, currentKeyValue); 966totalLength += AnimatedTypeHelpers.GetSegmentLengthColor(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\DecimalAnimation.cs (9)
294to = AnimatedTypeHelpers.AddDecimal(_keyValues[0], _keyValues[1]); 312&& !AnimatedTypeHelpers.IsValidAnimationValueDecimal(defaultOriginValue)) 323&& !AnimatedTypeHelpers.IsValidAnimationValueDecimal(defaultDestinationValue)) 340Decimal accumulator = AnimatedTypeHelpers.SubtractDecimal(to, from); 342accumulated = AnimatedTypeHelpers.ScaleDecimal(accumulator, currentRepeat); 348return AnimatedTypeHelpers.AddDecimal( 350AnimatedTypeHelpers.AddDecimal( 352AnimatedTypeHelpers.InterpolateDecimal(from, to, progress))); 417return AnimatedTypeHelpers.IsValidAnimationValueDecimal(typedValue.Value);
System\Windows\Media\Animation\Generated\DecimalAnimationUsingKeyFrames.cs (6)
391fromValue = AnimatedTypeHelpers.GetZeroValueDecimal(defaultOriginValue); 436currentIterationValue = AnimatedTypeHelpers.AddDecimal( 438AnimatedTypeHelpers.ScaleDecimal(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 445return AnimatedTypeHelpers.AddDecimal(defaultOriginValue, currentIterationValue); 943totalLength += AnimatedTypeHelpers.GetSegmentLengthDecimal(prevKeyValue, currentKeyValue); 966totalLength += AnimatedTypeHelpers.GetSegmentLengthDecimal(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\DoubleAnimation.cs (9)
294to = AnimatedTypeHelpers.AddDouble(_keyValues[0], _keyValues[1]); 312&& !AnimatedTypeHelpers.IsValidAnimationValueDouble(defaultOriginValue)) 323&& !AnimatedTypeHelpers.IsValidAnimationValueDouble(defaultDestinationValue)) 340Double accumulator = AnimatedTypeHelpers.SubtractDouble(to, from); 342accumulated = AnimatedTypeHelpers.ScaleDouble(accumulator, currentRepeat); 348return AnimatedTypeHelpers.AddDouble( 350AnimatedTypeHelpers.AddDouble( 352AnimatedTypeHelpers.InterpolateDouble(from, to, progress))); 417return AnimatedTypeHelpers.IsValidAnimationValueDouble(typedValue.Value);
System\Windows\Media\Animation\Generated\DoubleAnimationUsingKeyFrames.cs (6)
391fromValue = AnimatedTypeHelpers.GetZeroValueDouble(defaultOriginValue); 436currentIterationValue = AnimatedTypeHelpers.AddDouble( 438AnimatedTypeHelpers.ScaleDouble(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 445return AnimatedTypeHelpers.AddDouble(defaultOriginValue, currentIterationValue); 943totalLength += AnimatedTypeHelpers.GetSegmentLengthDouble(prevKeyValue, currentKeyValue); 966totalLength += AnimatedTypeHelpers.GetSegmentLengthDouble(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (16)
109return AnimatedTypeHelpers.InterpolateByte(baseValue, Value, keyFrameProgress); 234return AnimatedTypeHelpers.InterpolateColor(baseValue, Value, keyFrameProgress); 359return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, keyFrameProgress); 484return AnimatedTypeHelpers.InterpolateDouble(baseValue, Value, keyFrameProgress); 609return AnimatedTypeHelpers.InterpolateInt16(baseValue, Value, keyFrameProgress); 734return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, keyFrameProgress); 859return AnimatedTypeHelpers.InterpolateInt64(baseValue, Value, keyFrameProgress); 984return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, keyFrameProgress); 1109return AnimatedTypeHelpers.InterpolatePoint3D(baseValue, Value, keyFrameProgress); 1234return AnimatedTypeHelpers.InterpolateQuaternion(baseValue, Value, keyFrameProgress, UseShortestPath); 1359return AnimatedTypeHelpers.InterpolateRotation3D(baseValue, Value, keyFrameProgress); 1484return AnimatedTypeHelpers.InterpolateRect(baseValue, Value, keyFrameProgress); 1609return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, keyFrameProgress); 1734return AnimatedTypeHelpers.InterpolateSize(baseValue, Value, keyFrameProgress); 1859return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, keyFrameProgress); 1984return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\Int16Animation.cs (9)
294to = AnimatedTypeHelpers.AddInt16(_keyValues[0], _keyValues[1]); 312&& !AnimatedTypeHelpers.IsValidAnimationValueInt16(defaultOriginValue)) 323&& !AnimatedTypeHelpers.IsValidAnimationValueInt16(defaultDestinationValue)) 340Int16 accumulator = AnimatedTypeHelpers.SubtractInt16(to, from); 342accumulated = AnimatedTypeHelpers.ScaleInt16(accumulator, currentRepeat); 348return AnimatedTypeHelpers.AddInt16( 350AnimatedTypeHelpers.AddInt16( 352AnimatedTypeHelpers.InterpolateInt16(from, to, progress))); 417return AnimatedTypeHelpers.IsValidAnimationValueInt16(typedValue.Value);
System\Windows\Media\Animation\Generated\Int16AnimationUsingKeyFrames.cs (6)
391fromValue = AnimatedTypeHelpers.GetZeroValueInt16(defaultOriginValue); 436currentIterationValue = AnimatedTypeHelpers.AddInt16( 438AnimatedTypeHelpers.ScaleInt16(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 445return AnimatedTypeHelpers.AddInt16(defaultOriginValue, currentIterationValue); 943totalLength += AnimatedTypeHelpers.GetSegmentLengthInt16(prevKeyValue, currentKeyValue); 966totalLength += AnimatedTypeHelpers.GetSegmentLengthInt16(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\Int32Animation.cs (9)
294to = AnimatedTypeHelpers.AddInt32(_keyValues[0], _keyValues[1]); 312&& !AnimatedTypeHelpers.IsValidAnimationValueInt32(defaultOriginValue)) 323&& !AnimatedTypeHelpers.IsValidAnimationValueInt32(defaultDestinationValue)) 340Int32 accumulator = AnimatedTypeHelpers.SubtractInt32(to, from); 342accumulated = AnimatedTypeHelpers.ScaleInt32(accumulator, currentRepeat); 348return AnimatedTypeHelpers.AddInt32( 350AnimatedTypeHelpers.AddInt32( 352AnimatedTypeHelpers.InterpolateInt32(from, to, progress))); 417return AnimatedTypeHelpers.IsValidAnimationValueInt32(typedValue.Value);
System\Windows\Media\Animation\Generated\Int32AnimationUsingKeyFrames.cs (6)
391fromValue = AnimatedTypeHelpers.GetZeroValueInt32(defaultOriginValue); 436currentIterationValue = AnimatedTypeHelpers.AddInt32( 438AnimatedTypeHelpers.ScaleInt32(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 445return AnimatedTypeHelpers.AddInt32(defaultOriginValue, currentIterationValue); 943totalLength += AnimatedTypeHelpers.GetSegmentLengthInt32(prevKeyValue, currentKeyValue); 966totalLength += AnimatedTypeHelpers.GetSegmentLengthInt32(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\Int64Animation.cs (9)
294to = AnimatedTypeHelpers.AddInt64(_keyValues[0], _keyValues[1]); 312&& !AnimatedTypeHelpers.IsValidAnimationValueInt64(defaultOriginValue)) 323&& !AnimatedTypeHelpers.IsValidAnimationValueInt64(defaultDestinationValue)) 340Int64 accumulator = AnimatedTypeHelpers.SubtractInt64(to, from); 342accumulated = AnimatedTypeHelpers.ScaleInt64(accumulator, currentRepeat); 348return AnimatedTypeHelpers.AddInt64( 350AnimatedTypeHelpers.AddInt64( 352AnimatedTypeHelpers.InterpolateInt64(from, to, progress))); 417return AnimatedTypeHelpers.IsValidAnimationValueInt64(typedValue.Value);
System\Windows\Media\Animation\Generated\Int64AnimationUsingKeyFrames.cs (6)
391fromValue = AnimatedTypeHelpers.GetZeroValueInt64(defaultOriginValue); 436currentIterationValue = AnimatedTypeHelpers.AddInt64( 438AnimatedTypeHelpers.ScaleInt64(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 445return AnimatedTypeHelpers.AddInt64(defaultOriginValue, currentIterationValue); 943totalLength += AnimatedTypeHelpers.GetSegmentLengthInt64(prevKeyValue, currentKeyValue); 966totalLength += AnimatedTypeHelpers.GetSegmentLengthInt64(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (16)
89return AnimatedTypeHelpers.InterpolateByte(baseValue, Value, keyFrameProgress); 166return AnimatedTypeHelpers.InterpolateColor(baseValue, Value, keyFrameProgress); 243return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, keyFrameProgress); 320return AnimatedTypeHelpers.InterpolateDouble(baseValue, Value, keyFrameProgress); 397return AnimatedTypeHelpers.InterpolateInt16(baseValue, Value, keyFrameProgress); 474return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, keyFrameProgress); 551return AnimatedTypeHelpers.InterpolateInt64(baseValue, Value, keyFrameProgress); 628return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, keyFrameProgress); 705return AnimatedTypeHelpers.InterpolatePoint3D(baseValue, Value, keyFrameProgress); 782return AnimatedTypeHelpers.InterpolateQuaternion(baseValue, Value, keyFrameProgress, UseShortestPath); 859return AnimatedTypeHelpers.InterpolateRotation3D(baseValue, Value, keyFrameProgress); 936return AnimatedTypeHelpers.InterpolateRect(baseValue, Value, keyFrameProgress); 1013return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, keyFrameProgress); 1090return AnimatedTypeHelpers.InterpolateSize(baseValue, Value, keyFrameProgress); 1167return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, keyFrameProgress); 1244return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\MatrixAnimationUsingKeyFrames.cs (2)
851totalLength += AnimatedTypeHelpers.GetSegmentLengthMatrix(prevKeyValue, currentKeyValue); 874totalLength += AnimatedTypeHelpers.GetSegmentLengthMatrix(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (2)
851totalLength += AnimatedTypeHelpers.GetSegmentLengthObject(prevKeyValue, currentKeyValue); 874totalLength += AnimatedTypeHelpers.GetSegmentLengthObject(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\Point3DAnimation.cs (9)
294to = AnimatedTypeHelpers.AddPoint3D(_keyValues[0], _keyValues[1]); 312&& !AnimatedTypeHelpers.IsValidAnimationValuePoint3D(defaultOriginValue)) 323&& !AnimatedTypeHelpers.IsValidAnimationValuePoint3D(defaultDestinationValue)) 340Point3D accumulator = AnimatedTypeHelpers.SubtractPoint3D(to, from); 342accumulated = AnimatedTypeHelpers.ScalePoint3D(accumulator, currentRepeat); 348return AnimatedTypeHelpers.AddPoint3D( 350AnimatedTypeHelpers.AddPoint3D( 352AnimatedTypeHelpers.InterpolatePoint3D(from, to, progress))); 417return AnimatedTypeHelpers.IsValidAnimationValuePoint3D(typedValue.Value);
System\Windows\Media\Animation\Generated\Point3DAnimationUsingKeyFrames.cs (6)
391fromValue = AnimatedTypeHelpers.GetZeroValuePoint3D(defaultOriginValue); 436currentIterationValue = AnimatedTypeHelpers.AddPoint3D( 438AnimatedTypeHelpers.ScalePoint3D(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 445return AnimatedTypeHelpers.AddPoint3D(defaultOriginValue, currentIterationValue); 943totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint3D(prevKeyValue, currentKeyValue); 966totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint3D(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\PointAnimation.cs (9)
294to = AnimatedTypeHelpers.AddPoint(_keyValues[0], _keyValues[1]); 312&& !AnimatedTypeHelpers.IsValidAnimationValuePoint(defaultOriginValue)) 323&& !AnimatedTypeHelpers.IsValidAnimationValuePoint(defaultDestinationValue)) 340Point accumulator = AnimatedTypeHelpers.SubtractPoint(to, from); 342accumulated = AnimatedTypeHelpers.ScalePoint(accumulator, currentRepeat); 348return AnimatedTypeHelpers.AddPoint( 350AnimatedTypeHelpers.AddPoint( 352AnimatedTypeHelpers.InterpolatePoint(from, to, progress))); 417return AnimatedTypeHelpers.IsValidAnimationValuePoint(typedValue.Value);
System\Windows\Media\Animation\Generated\PointAnimationUsingKeyFrames.cs (6)
391fromValue = AnimatedTypeHelpers.GetZeroValuePoint(defaultOriginValue); 436currentIterationValue = AnimatedTypeHelpers.AddPoint( 438AnimatedTypeHelpers.ScalePoint(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 445return AnimatedTypeHelpers.AddPoint(defaultOriginValue, currentIterationValue); 943totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint(prevKeyValue, currentKeyValue); 966totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\QuaternionAnimation.cs (9)
294to = AnimatedTypeHelpers.AddQuaternion(_keyValues[0], _keyValues[1]); 312&& !AnimatedTypeHelpers.IsValidAnimationValueQuaternion(defaultOriginValue)) 323&& !AnimatedTypeHelpers.IsValidAnimationValueQuaternion(defaultDestinationValue)) 340Quaternion accumulator = AnimatedTypeHelpers.SubtractQuaternion(to, from); 342accumulated = AnimatedTypeHelpers.ScaleQuaternion(accumulator, currentRepeat); 348return AnimatedTypeHelpers.AddQuaternion( 350AnimatedTypeHelpers.AddQuaternion( 352AnimatedTypeHelpers.InterpolateQuaternion(from, to, progress, UseShortestPath))); 417return AnimatedTypeHelpers.IsValidAnimationValueQuaternion(typedValue.Value);
System\Windows\Media\Animation\Generated\QuaternionAnimationUsingKeyFrames.cs (6)
391fromValue = AnimatedTypeHelpers.GetZeroValueQuaternion(defaultOriginValue); 436currentIterationValue = AnimatedTypeHelpers.AddQuaternion( 438AnimatedTypeHelpers.ScaleQuaternion(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 445return AnimatedTypeHelpers.AddQuaternion(defaultOriginValue, currentIterationValue); 943totalLength += AnimatedTypeHelpers.GetSegmentLengthQuaternion(prevKeyValue, currentKeyValue); 966totalLength += AnimatedTypeHelpers.GetSegmentLengthQuaternion(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\RectAnimation.cs (9)
294to = AnimatedTypeHelpers.AddRect(_keyValues[0], _keyValues[1]); 312&& !AnimatedTypeHelpers.IsValidAnimationValueRect(defaultOriginValue)) 323&& !AnimatedTypeHelpers.IsValidAnimationValueRect(defaultDestinationValue)) 340Rect accumulator = AnimatedTypeHelpers.SubtractRect(to, from); 342accumulated = AnimatedTypeHelpers.ScaleRect(accumulator, currentRepeat); 348return AnimatedTypeHelpers.AddRect( 350AnimatedTypeHelpers.AddRect( 352AnimatedTypeHelpers.InterpolateRect(from, to, progress))); 417return AnimatedTypeHelpers.IsValidAnimationValueRect(typedValue.Value);
System\Windows\Media\Animation\Generated\RectAnimationUsingKeyFrames.cs (6)
391fromValue = AnimatedTypeHelpers.GetZeroValueRect(defaultOriginValue); 436currentIterationValue = AnimatedTypeHelpers.AddRect( 438AnimatedTypeHelpers.ScaleRect(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 445return AnimatedTypeHelpers.AddRect(defaultOriginValue, currentIterationValue); 943totalLength += AnimatedTypeHelpers.GetSegmentLengthRect(prevKeyValue, currentKeyValue); 966totalLength += AnimatedTypeHelpers.GetSegmentLengthRect(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\Rotation3DAnimation.cs (9)
294to = AnimatedTypeHelpers.AddRotation3D(_keyValues[0], _keyValues[1]); 312&& !AnimatedTypeHelpers.IsValidAnimationValueRotation3D(defaultOriginValue)) 323&& !AnimatedTypeHelpers.IsValidAnimationValueRotation3D(defaultDestinationValue)) 340Rotation3D accumulator = AnimatedTypeHelpers.SubtractRotation3D(to, from); 342accumulated = AnimatedTypeHelpers.ScaleRotation3D(accumulator, currentRepeat); 348return AnimatedTypeHelpers.AddRotation3D( 350AnimatedTypeHelpers.AddRotation3D( 352AnimatedTypeHelpers.InterpolateRotation3D(from, to, progress))); 417return AnimatedTypeHelpers.IsValidAnimationValueRotation3D(typedValue);
System\Windows\Media\Animation\Generated\Rotation3DAnimationUsingKeyFrames.cs (6)
391fromValue = AnimatedTypeHelpers.GetZeroValueRotation3D(defaultOriginValue); 436currentIterationValue = AnimatedTypeHelpers.AddRotation3D( 438AnimatedTypeHelpers.ScaleRotation3D(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 445return AnimatedTypeHelpers.AddRotation3D(defaultOriginValue, currentIterationValue); 943totalLength += AnimatedTypeHelpers.GetSegmentLengthRotation3D(prevKeyValue, currentKeyValue); 966totalLength += AnimatedTypeHelpers.GetSegmentLengthRotation3D(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\SingleAnimation.cs (9)
294to = AnimatedTypeHelpers.AddSingle(_keyValues[0], _keyValues[1]); 312&& !AnimatedTypeHelpers.IsValidAnimationValueSingle(defaultOriginValue)) 323&& !AnimatedTypeHelpers.IsValidAnimationValueSingle(defaultDestinationValue)) 340Single accumulator = AnimatedTypeHelpers.SubtractSingle(to, from); 342accumulated = AnimatedTypeHelpers.ScaleSingle(accumulator, currentRepeat); 348return AnimatedTypeHelpers.AddSingle( 350AnimatedTypeHelpers.AddSingle( 352AnimatedTypeHelpers.InterpolateSingle(from, to, progress))); 417return AnimatedTypeHelpers.IsValidAnimationValueSingle(typedValue.Value);
System\Windows\Media\Animation\Generated\SingleAnimationUsingKeyFrames.cs (6)
391fromValue = AnimatedTypeHelpers.GetZeroValueSingle(defaultOriginValue); 436currentIterationValue = AnimatedTypeHelpers.AddSingle( 438AnimatedTypeHelpers.ScaleSingle(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 445return AnimatedTypeHelpers.AddSingle(defaultOriginValue, currentIterationValue); 943totalLength += AnimatedTypeHelpers.GetSegmentLengthSingle(prevKeyValue, currentKeyValue); 966totalLength += AnimatedTypeHelpers.GetSegmentLengthSingle(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\SizeAnimation.cs (9)
294to = AnimatedTypeHelpers.AddSize(_keyValues[0], _keyValues[1]); 312&& !AnimatedTypeHelpers.IsValidAnimationValueSize(defaultOriginValue)) 323&& !AnimatedTypeHelpers.IsValidAnimationValueSize(defaultDestinationValue)) 340Size accumulator = AnimatedTypeHelpers.SubtractSize(to, from); 342accumulated = AnimatedTypeHelpers.ScaleSize(accumulator, currentRepeat); 348return AnimatedTypeHelpers.AddSize( 350AnimatedTypeHelpers.AddSize( 352AnimatedTypeHelpers.InterpolateSize(from, to, progress))); 417return AnimatedTypeHelpers.IsValidAnimationValueSize(typedValue.Value);
System\Windows\Media\Animation\Generated\SizeAnimationUsingKeyFrames.cs (6)
391fromValue = AnimatedTypeHelpers.GetZeroValueSize(defaultOriginValue); 436currentIterationValue = AnimatedTypeHelpers.AddSize( 438AnimatedTypeHelpers.ScaleSize(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 445return AnimatedTypeHelpers.AddSize(defaultOriginValue, currentIterationValue); 943totalLength += AnimatedTypeHelpers.GetSegmentLengthSize(prevKeyValue, currentKeyValue); 966totalLength += AnimatedTypeHelpers.GetSegmentLengthSize(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (16)
112return AnimatedTypeHelpers.InterpolateByte(baseValue, Value, splineProgress); 239return AnimatedTypeHelpers.InterpolateColor(baseValue, Value, splineProgress); 366return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, splineProgress); 493return AnimatedTypeHelpers.InterpolateDouble(baseValue, Value, splineProgress); 620return AnimatedTypeHelpers.InterpolateInt16(baseValue, Value, splineProgress); 747return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, splineProgress); 874return AnimatedTypeHelpers.InterpolateInt64(baseValue, Value, splineProgress); 1001return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, splineProgress); 1128return AnimatedTypeHelpers.InterpolatePoint3D(baseValue, Value, splineProgress); 1255return AnimatedTypeHelpers.InterpolateQuaternion(baseValue, Value, splineProgress, UseShortestPath); 1382return AnimatedTypeHelpers.InterpolateRotation3D(baseValue, Value, splineProgress); 1509return AnimatedTypeHelpers.InterpolateRect(baseValue, Value, splineProgress); 1636return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, splineProgress); 1763return AnimatedTypeHelpers.InterpolateSize(baseValue, Value, splineProgress); 1890return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, splineProgress); 2017return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, splineProgress);
System\Windows\Media\Animation\Generated\StringAnimationUsingKeyFrames.cs (2)
851totalLength += AnimatedTypeHelpers.GetSegmentLengthString(prevKeyValue, currentKeyValue); 874totalLength += AnimatedTypeHelpers.GetSegmentLengthString(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\Vector3DAnimation.cs (9)
294to = AnimatedTypeHelpers.AddVector3D(_keyValues[0], _keyValues[1]); 312&& !AnimatedTypeHelpers.IsValidAnimationValueVector3D(defaultOriginValue)) 323&& !AnimatedTypeHelpers.IsValidAnimationValueVector3D(defaultDestinationValue)) 340Vector3D accumulator = AnimatedTypeHelpers.SubtractVector3D(to, from); 342accumulated = AnimatedTypeHelpers.ScaleVector3D(accumulator, currentRepeat); 348return AnimatedTypeHelpers.AddVector3D( 350AnimatedTypeHelpers.AddVector3D( 352AnimatedTypeHelpers.InterpolateVector3D(from, to, progress))); 417return AnimatedTypeHelpers.IsValidAnimationValueVector3D(typedValue.Value);
System\Windows\Media\Animation\Generated\Vector3DAnimationUsingKeyFrames.cs (6)
391fromValue = AnimatedTypeHelpers.GetZeroValueVector3D(defaultOriginValue); 436currentIterationValue = AnimatedTypeHelpers.AddVector3D( 438AnimatedTypeHelpers.ScaleVector3D(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 445return AnimatedTypeHelpers.AddVector3D(defaultOriginValue, currentIterationValue); 943totalLength += AnimatedTypeHelpers.GetSegmentLengthVector3D(prevKeyValue, currentKeyValue); 966totalLength += AnimatedTypeHelpers.GetSegmentLengthVector3D(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\VectorAnimation.cs (9)
294to = AnimatedTypeHelpers.AddVector(_keyValues[0], _keyValues[1]); 312&& !AnimatedTypeHelpers.IsValidAnimationValueVector(defaultOriginValue)) 323&& !AnimatedTypeHelpers.IsValidAnimationValueVector(defaultDestinationValue)) 340Vector accumulator = AnimatedTypeHelpers.SubtractVector(to, from); 342accumulated = AnimatedTypeHelpers.ScaleVector(accumulator, currentRepeat); 348return AnimatedTypeHelpers.AddVector( 350AnimatedTypeHelpers.AddVector( 352AnimatedTypeHelpers.InterpolateVector(from, to, progress))); 417return AnimatedTypeHelpers.IsValidAnimationValueVector(typedValue.Value);
System\Windows\Media\Animation\Generated\VectorAnimationUsingKeyFrames.cs (6)
391fromValue = AnimatedTypeHelpers.GetZeroValueVector(defaultOriginValue); 436currentIterationValue = AnimatedTypeHelpers.AddVector( 438AnimatedTypeHelpers.ScaleVector(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 445return AnimatedTypeHelpers.AddVector(defaultOriginValue, currentIterationValue); 943totalLength += AnimatedTypeHelpers.GetSegmentLengthVector(prevKeyValue, currentKeyValue); 966totalLength += AnimatedTypeHelpers.GetSegmentLengthVector(prevKeyValue, _keyFrames[index].Value);