298 references to AnimatedTypeHelpers
PresentationCore (298)
System\Windows\Media\Animation\Generated\BooleanAnimationUsingKeyFrames.cs (2)
859totalLength += AnimatedTypeHelpers.GetSegmentLengthBoolean(prevKeyValue, currentKeyValue); 882totalLength += AnimatedTypeHelpers.GetSegmentLengthBoolean(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\ByteAnimation.cs (9)
304to = AnimatedTypeHelpers.AddByte(_keyValues[0], _keyValues[1]); 322&& !AnimatedTypeHelpers.IsValidAnimationValueByte(defaultOriginValue)) 333&& !AnimatedTypeHelpers.IsValidAnimationValueByte(defaultDestinationValue)) 350Byte accumulator = AnimatedTypeHelpers.SubtractByte(to, from); 352accumulated = AnimatedTypeHelpers.ScaleByte(accumulator, currentRepeat); 358return AnimatedTypeHelpers.AddByte( 360AnimatedTypeHelpers.AddByte( 362AnimatedTypeHelpers.InterpolateByte(from, to, progress))); 427return AnimatedTypeHelpers.IsValidAnimationValueByte(typedValue.Value);
System\Windows\Media\Animation\Generated\ByteAnimationUsingKeyFrames.cs (6)
401fromValue = AnimatedTypeHelpers.GetZeroValueByte(defaultOriginValue); 446currentIterationValue = AnimatedTypeHelpers.AddByte( 448AnimatedTypeHelpers.ScaleByte(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 455return AnimatedTypeHelpers.AddByte(defaultOriginValue, currentIterationValue); 951totalLength += AnimatedTypeHelpers.GetSegmentLengthByte(prevKeyValue, currentKeyValue); 974totalLength += AnimatedTypeHelpers.GetSegmentLengthByte(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\CharAnimationUsingKeyFrames.cs (2)
859totalLength += AnimatedTypeHelpers.GetSegmentLengthChar(prevKeyValue, currentKeyValue); 882totalLength += AnimatedTypeHelpers.GetSegmentLengthChar(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\ColorAnimation.cs (9)
304to = AnimatedTypeHelpers.AddColor(_keyValues[0], _keyValues[1]); 322&& !AnimatedTypeHelpers.IsValidAnimationValueColor(defaultOriginValue)) 333&& !AnimatedTypeHelpers.IsValidAnimationValueColor(defaultDestinationValue)) 350Color accumulator = AnimatedTypeHelpers.SubtractColor(to, from); 352accumulated = AnimatedTypeHelpers.ScaleColor(accumulator, currentRepeat); 358return AnimatedTypeHelpers.AddColor( 360AnimatedTypeHelpers.AddColor( 362AnimatedTypeHelpers.InterpolateColor(from, to, progress))); 427return AnimatedTypeHelpers.IsValidAnimationValueColor(typedValue.Value);
System\Windows\Media\Animation\Generated\ColorAnimationUsingKeyFrames.cs (6)
401fromValue = AnimatedTypeHelpers.GetZeroValueColor(defaultOriginValue); 446currentIterationValue = AnimatedTypeHelpers.AddColor( 448AnimatedTypeHelpers.ScaleColor(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 455return AnimatedTypeHelpers.AddColor(defaultOriginValue, currentIterationValue); 951totalLength += AnimatedTypeHelpers.GetSegmentLengthColor(prevKeyValue, currentKeyValue); 974totalLength += AnimatedTypeHelpers.GetSegmentLengthColor(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\DecimalAnimation.cs (9)
304to = AnimatedTypeHelpers.AddDecimal(_keyValues[0], _keyValues[1]); 322&& !AnimatedTypeHelpers.IsValidAnimationValueDecimal(defaultOriginValue)) 333&& !AnimatedTypeHelpers.IsValidAnimationValueDecimal(defaultDestinationValue)) 350Decimal accumulator = AnimatedTypeHelpers.SubtractDecimal(to, from); 352accumulated = AnimatedTypeHelpers.ScaleDecimal(accumulator, currentRepeat); 358return AnimatedTypeHelpers.AddDecimal( 360AnimatedTypeHelpers.AddDecimal( 362AnimatedTypeHelpers.InterpolateDecimal(from, to, progress))); 427return AnimatedTypeHelpers.IsValidAnimationValueDecimal(typedValue.Value);
System\Windows\Media\Animation\Generated\DecimalAnimationUsingKeyFrames.cs (6)
401fromValue = AnimatedTypeHelpers.GetZeroValueDecimal(defaultOriginValue); 446currentIterationValue = AnimatedTypeHelpers.AddDecimal( 448AnimatedTypeHelpers.ScaleDecimal(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 455return AnimatedTypeHelpers.AddDecimal(defaultOriginValue, currentIterationValue); 951totalLength += AnimatedTypeHelpers.GetSegmentLengthDecimal(prevKeyValue, currentKeyValue); 974totalLength += AnimatedTypeHelpers.GetSegmentLengthDecimal(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\DoubleAnimation.cs (9)
304to = AnimatedTypeHelpers.AddDouble(_keyValues[0], _keyValues[1]); 322&& !AnimatedTypeHelpers.IsValidAnimationValueDouble(defaultOriginValue)) 333&& !AnimatedTypeHelpers.IsValidAnimationValueDouble(defaultDestinationValue)) 350Double accumulator = AnimatedTypeHelpers.SubtractDouble(to, from); 352accumulated = AnimatedTypeHelpers.ScaleDouble(accumulator, currentRepeat); 358return AnimatedTypeHelpers.AddDouble( 360AnimatedTypeHelpers.AddDouble( 362AnimatedTypeHelpers.InterpolateDouble(from, to, progress))); 427return AnimatedTypeHelpers.IsValidAnimationValueDouble(typedValue.Value);
System\Windows\Media\Animation\Generated\DoubleAnimationUsingKeyFrames.cs (6)
401fromValue = AnimatedTypeHelpers.GetZeroValueDouble(defaultOriginValue); 446currentIterationValue = AnimatedTypeHelpers.AddDouble( 448AnimatedTypeHelpers.ScaleDouble(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 455return AnimatedTypeHelpers.AddDouble(defaultOriginValue, currentIterationValue); 951totalLength += AnimatedTypeHelpers.GetSegmentLengthDouble(prevKeyValue, currentKeyValue); 974totalLength += AnimatedTypeHelpers.GetSegmentLengthDouble(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (16)
114return AnimatedTypeHelpers.InterpolateByte(baseValue, Value, keyFrameProgress); 239return AnimatedTypeHelpers.InterpolateColor(baseValue, Value, keyFrameProgress); 364return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, keyFrameProgress); 489return AnimatedTypeHelpers.InterpolateDouble(baseValue, Value, keyFrameProgress); 614return AnimatedTypeHelpers.InterpolateInt16(baseValue, Value, keyFrameProgress); 739return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, keyFrameProgress); 864return AnimatedTypeHelpers.InterpolateInt64(baseValue, Value, keyFrameProgress); 989return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, keyFrameProgress); 1114return AnimatedTypeHelpers.InterpolatePoint3D(baseValue, Value, keyFrameProgress); 1239return AnimatedTypeHelpers.InterpolateQuaternion(baseValue, Value, keyFrameProgress, UseShortestPath); 1364return AnimatedTypeHelpers.InterpolateRotation3D(baseValue, Value, keyFrameProgress); 1489return AnimatedTypeHelpers.InterpolateRect(baseValue, Value, keyFrameProgress); 1614return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, keyFrameProgress); 1739return AnimatedTypeHelpers.InterpolateSize(baseValue, Value, keyFrameProgress); 1864return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, keyFrameProgress); 1989return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\Int16Animation.cs (9)
304to = AnimatedTypeHelpers.AddInt16(_keyValues[0], _keyValues[1]); 322&& !AnimatedTypeHelpers.IsValidAnimationValueInt16(defaultOriginValue)) 333&& !AnimatedTypeHelpers.IsValidAnimationValueInt16(defaultDestinationValue)) 350Int16 accumulator = AnimatedTypeHelpers.SubtractInt16(to, from); 352accumulated = AnimatedTypeHelpers.ScaleInt16(accumulator, currentRepeat); 358return AnimatedTypeHelpers.AddInt16( 360AnimatedTypeHelpers.AddInt16( 362AnimatedTypeHelpers.InterpolateInt16(from, to, progress))); 427return AnimatedTypeHelpers.IsValidAnimationValueInt16(typedValue.Value);
System\Windows\Media\Animation\Generated\Int16AnimationUsingKeyFrames.cs (6)
401fromValue = AnimatedTypeHelpers.GetZeroValueInt16(defaultOriginValue); 446currentIterationValue = AnimatedTypeHelpers.AddInt16( 448AnimatedTypeHelpers.ScaleInt16(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 455return AnimatedTypeHelpers.AddInt16(defaultOriginValue, currentIterationValue); 951totalLength += AnimatedTypeHelpers.GetSegmentLengthInt16(prevKeyValue, currentKeyValue); 974totalLength += AnimatedTypeHelpers.GetSegmentLengthInt16(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\Int32Animation.cs (9)
304to = AnimatedTypeHelpers.AddInt32(_keyValues[0], _keyValues[1]); 322&& !AnimatedTypeHelpers.IsValidAnimationValueInt32(defaultOriginValue)) 333&& !AnimatedTypeHelpers.IsValidAnimationValueInt32(defaultDestinationValue)) 350Int32 accumulator = AnimatedTypeHelpers.SubtractInt32(to, from); 352accumulated = AnimatedTypeHelpers.ScaleInt32(accumulator, currentRepeat); 358return AnimatedTypeHelpers.AddInt32( 360AnimatedTypeHelpers.AddInt32( 362AnimatedTypeHelpers.InterpolateInt32(from, to, progress))); 427return AnimatedTypeHelpers.IsValidAnimationValueInt32(typedValue.Value);
System\Windows\Media\Animation\Generated\Int32AnimationUsingKeyFrames.cs (6)
401fromValue = AnimatedTypeHelpers.GetZeroValueInt32(defaultOriginValue); 446currentIterationValue = AnimatedTypeHelpers.AddInt32( 448AnimatedTypeHelpers.ScaleInt32(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 455return AnimatedTypeHelpers.AddInt32(defaultOriginValue, currentIterationValue); 951totalLength += AnimatedTypeHelpers.GetSegmentLengthInt32(prevKeyValue, currentKeyValue); 974totalLength += AnimatedTypeHelpers.GetSegmentLengthInt32(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\Int64Animation.cs (9)
304to = AnimatedTypeHelpers.AddInt64(_keyValues[0], _keyValues[1]); 322&& !AnimatedTypeHelpers.IsValidAnimationValueInt64(defaultOriginValue)) 333&& !AnimatedTypeHelpers.IsValidAnimationValueInt64(defaultDestinationValue)) 350Int64 accumulator = AnimatedTypeHelpers.SubtractInt64(to, from); 352accumulated = AnimatedTypeHelpers.ScaleInt64(accumulator, currentRepeat); 358return AnimatedTypeHelpers.AddInt64( 360AnimatedTypeHelpers.AddInt64( 362AnimatedTypeHelpers.InterpolateInt64(from, to, progress))); 427return AnimatedTypeHelpers.IsValidAnimationValueInt64(typedValue.Value);
System\Windows\Media\Animation\Generated\Int64AnimationUsingKeyFrames.cs (6)
401fromValue = AnimatedTypeHelpers.GetZeroValueInt64(defaultOriginValue); 446currentIterationValue = AnimatedTypeHelpers.AddInt64( 448AnimatedTypeHelpers.ScaleInt64(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 455return AnimatedTypeHelpers.AddInt64(defaultOriginValue, currentIterationValue); 951totalLength += AnimatedTypeHelpers.GetSegmentLengthInt64(prevKeyValue, currentKeyValue); 974totalLength += AnimatedTypeHelpers.GetSegmentLengthInt64(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (16)
94return AnimatedTypeHelpers.InterpolateByte(baseValue, Value, keyFrameProgress); 171return AnimatedTypeHelpers.InterpolateColor(baseValue, Value, keyFrameProgress); 248return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, keyFrameProgress); 325return AnimatedTypeHelpers.InterpolateDouble(baseValue, Value, keyFrameProgress); 402return AnimatedTypeHelpers.InterpolateInt16(baseValue, Value, keyFrameProgress); 479return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, keyFrameProgress); 556return AnimatedTypeHelpers.InterpolateInt64(baseValue, Value, keyFrameProgress); 633return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, keyFrameProgress); 710return AnimatedTypeHelpers.InterpolatePoint3D(baseValue, Value, keyFrameProgress); 787return AnimatedTypeHelpers.InterpolateQuaternion(baseValue, Value, keyFrameProgress, UseShortestPath); 864return AnimatedTypeHelpers.InterpolateRotation3D(baseValue, Value, keyFrameProgress); 941return AnimatedTypeHelpers.InterpolateRect(baseValue, Value, keyFrameProgress); 1018return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, keyFrameProgress); 1095return AnimatedTypeHelpers.InterpolateSize(baseValue, Value, keyFrameProgress); 1172return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, keyFrameProgress); 1249return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\MatrixAnimationUsingKeyFrames.cs (2)
859totalLength += AnimatedTypeHelpers.GetSegmentLengthMatrix(prevKeyValue, currentKeyValue); 882totalLength += AnimatedTypeHelpers.GetSegmentLengthMatrix(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (2)
859totalLength += AnimatedTypeHelpers.GetSegmentLengthObject(prevKeyValue, currentKeyValue); 882totalLength += AnimatedTypeHelpers.GetSegmentLengthObject(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\Point3DAnimation.cs (9)
304to = AnimatedTypeHelpers.AddPoint3D(_keyValues[0], _keyValues[1]); 322&& !AnimatedTypeHelpers.IsValidAnimationValuePoint3D(defaultOriginValue)) 333&& !AnimatedTypeHelpers.IsValidAnimationValuePoint3D(defaultDestinationValue)) 350Point3D accumulator = AnimatedTypeHelpers.SubtractPoint3D(to, from); 352accumulated = AnimatedTypeHelpers.ScalePoint3D(accumulator, currentRepeat); 358return AnimatedTypeHelpers.AddPoint3D( 360AnimatedTypeHelpers.AddPoint3D( 362AnimatedTypeHelpers.InterpolatePoint3D(from, to, progress))); 427return AnimatedTypeHelpers.IsValidAnimationValuePoint3D(typedValue.Value);
System\Windows\Media\Animation\Generated\Point3DAnimationUsingKeyFrames.cs (6)
401fromValue = AnimatedTypeHelpers.GetZeroValuePoint3D(defaultOriginValue); 446currentIterationValue = AnimatedTypeHelpers.AddPoint3D( 448AnimatedTypeHelpers.ScalePoint3D(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 455return AnimatedTypeHelpers.AddPoint3D(defaultOriginValue, currentIterationValue); 951totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint3D(prevKeyValue, currentKeyValue); 974totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint3D(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\PointAnimation.cs (9)
304to = AnimatedTypeHelpers.AddPoint(_keyValues[0], _keyValues[1]); 322&& !AnimatedTypeHelpers.IsValidAnimationValuePoint(defaultOriginValue)) 333&& !AnimatedTypeHelpers.IsValidAnimationValuePoint(defaultDestinationValue)) 350Point accumulator = AnimatedTypeHelpers.SubtractPoint(to, from); 352accumulated = AnimatedTypeHelpers.ScalePoint(accumulator, currentRepeat); 358return AnimatedTypeHelpers.AddPoint( 360AnimatedTypeHelpers.AddPoint( 362AnimatedTypeHelpers.InterpolatePoint(from, to, progress))); 427return AnimatedTypeHelpers.IsValidAnimationValuePoint(typedValue.Value);
System\Windows\Media\Animation\Generated\PointAnimationUsingKeyFrames.cs (6)
401fromValue = AnimatedTypeHelpers.GetZeroValuePoint(defaultOriginValue); 446currentIterationValue = AnimatedTypeHelpers.AddPoint( 448AnimatedTypeHelpers.ScalePoint(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 455return AnimatedTypeHelpers.AddPoint(defaultOriginValue, currentIterationValue); 951totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint(prevKeyValue, currentKeyValue); 974totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\QuaternionAnimation.cs (9)
304to = AnimatedTypeHelpers.AddQuaternion(_keyValues[0], _keyValues[1]); 322&& !AnimatedTypeHelpers.IsValidAnimationValueQuaternion(defaultOriginValue)) 333&& !AnimatedTypeHelpers.IsValidAnimationValueQuaternion(defaultDestinationValue)) 350Quaternion accumulator = AnimatedTypeHelpers.SubtractQuaternion(to, from); 352accumulated = AnimatedTypeHelpers.ScaleQuaternion(accumulator, currentRepeat); 358return AnimatedTypeHelpers.AddQuaternion( 360AnimatedTypeHelpers.AddQuaternion( 362AnimatedTypeHelpers.InterpolateQuaternion(from, to, progress, UseShortestPath))); 427return AnimatedTypeHelpers.IsValidAnimationValueQuaternion(typedValue.Value);
System\Windows\Media\Animation\Generated\QuaternionAnimationUsingKeyFrames.cs (6)
401fromValue = AnimatedTypeHelpers.GetZeroValueQuaternion(defaultOriginValue); 446currentIterationValue = AnimatedTypeHelpers.AddQuaternion( 448AnimatedTypeHelpers.ScaleQuaternion(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 455return AnimatedTypeHelpers.AddQuaternion(defaultOriginValue, currentIterationValue); 951totalLength += AnimatedTypeHelpers.GetSegmentLengthQuaternion(prevKeyValue, currentKeyValue); 974totalLength += AnimatedTypeHelpers.GetSegmentLengthQuaternion(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\RectAnimation.cs (9)
304to = AnimatedTypeHelpers.AddRect(_keyValues[0], _keyValues[1]); 322&& !AnimatedTypeHelpers.IsValidAnimationValueRect(defaultOriginValue)) 333&& !AnimatedTypeHelpers.IsValidAnimationValueRect(defaultDestinationValue)) 350Rect accumulator = AnimatedTypeHelpers.SubtractRect(to, from); 352accumulated = AnimatedTypeHelpers.ScaleRect(accumulator, currentRepeat); 358return AnimatedTypeHelpers.AddRect( 360AnimatedTypeHelpers.AddRect( 362AnimatedTypeHelpers.InterpolateRect(from, to, progress))); 427return AnimatedTypeHelpers.IsValidAnimationValueRect(typedValue.Value);
System\Windows\Media\Animation\Generated\RectAnimationUsingKeyFrames.cs (6)
401fromValue = AnimatedTypeHelpers.GetZeroValueRect(defaultOriginValue); 446currentIterationValue = AnimatedTypeHelpers.AddRect( 448AnimatedTypeHelpers.ScaleRect(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 455return AnimatedTypeHelpers.AddRect(defaultOriginValue, currentIterationValue); 951totalLength += AnimatedTypeHelpers.GetSegmentLengthRect(prevKeyValue, currentKeyValue); 974totalLength += AnimatedTypeHelpers.GetSegmentLengthRect(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\Rotation3DAnimation.cs (9)
304to = AnimatedTypeHelpers.AddRotation3D(_keyValues[0], _keyValues[1]); 322&& !AnimatedTypeHelpers.IsValidAnimationValueRotation3D(defaultOriginValue)) 333&& !AnimatedTypeHelpers.IsValidAnimationValueRotation3D(defaultDestinationValue)) 350Rotation3D accumulator = AnimatedTypeHelpers.SubtractRotation3D(to, from); 352accumulated = AnimatedTypeHelpers.ScaleRotation3D(accumulator, currentRepeat); 358return AnimatedTypeHelpers.AddRotation3D( 360AnimatedTypeHelpers.AddRotation3D( 362AnimatedTypeHelpers.InterpolateRotation3D(from, to, progress))); 427return AnimatedTypeHelpers.IsValidAnimationValueRotation3D(typedValue);
System\Windows\Media\Animation\Generated\Rotation3DAnimationUsingKeyFrames.cs (6)
401fromValue = AnimatedTypeHelpers.GetZeroValueRotation3D(defaultOriginValue); 446currentIterationValue = AnimatedTypeHelpers.AddRotation3D( 448AnimatedTypeHelpers.ScaleRotation3D(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 455return AnimatedTypeHelpers.AddRotation3D(defaultOriginValue, currentIterationValue); 951totalLength += AnimatedTypeHelpers.GetSegmentLengthRotation3D(prevKeyValue, currentKeyValue); 974totalLength += AnimatedTypeHelpers.GetSegmentLengthRotation3D(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\SingleAnimation.cs (9)
304to = AnimatedTypeHelpers.AddSingle(_keyValues[0], _keyValues[1]); 322&& !AnimatedTypeHelpers.IsValidAnimationValueSingle(defaultOriginValue)) 333&& !AnimatedTypeHelpers.IsValidAnimationValueSingle(defaultDestinationValue)) 350Single accumulator = AnimatedTypeHelpers.SubtractSingle(to, from); 352accumulated = AnimatedTypeHelpers.ScaleSingle(accumulator, currentRepeat); 358return AnimatedTypeHelpers.AddSingle( 360AnimatedTypeHelpers.AddSingle( 362AnimatedTypeHelpers.InterpolateSingle(from, to, progress))); 427return AnimatedTypeHelpers.IsValidAnimationValueSingle(typedValue.Value);
System\Windows\Media\Animation\Generated\SingleAnimationUsingKeyFrames.cs (6)
401fromValue = AnimatedTypeHelpers.GetZeroValueSingle(defaultOriginValue); 446currentIterationValue = AnimatedTypeHelpers.AddSingle( 448AnimatedTypeHelpers.ScaleSingle(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 455return AnimatedTypeHelpers.AddSingle(defaultOriginValue, currentIterationValue); 951totalLength += AnimatedTypeHelpers.GetSegmentLengthSingle(prevKeyValue, currentKeyValue); 974totalLength += AnimatedTypeHelpers.GetSegmentLengthSingle(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\SizeAnimation.cs (9)
304to = AnimatedTypeHelpers.AddSize(_keyValues[0], _keyValues[1]); 322&& !AnimatedTypeHelpers.IsValidAnimationValueSize(defaultOriginValue)) 333&& !AnimatedTypeHelpers.IsValidAnimationValueSize(defaultDestinationValue)) 350Size accumulator = AnimatedTypeHelpers.SubtractSize(to, from); 352accumulated = AnimatedTypeHelpers.ScaleSize(accumulator, currentRepeat); 358return AnimatedTypeHelpers.AddSize( 360AnimatedTypeHelpers.AddSize( 362AnimatedTypeHelpers.InterpolateSize(from, to, progress))); 427return AnimatedTypeHelpers.IsValidAnimationValueSize(typedValue.Value);
System\Windows\Media\Animation\Generated\SizeAnimationUsingKeyFrames.cs (6)
401fromValue = AnimatedTypeHelpers.GetZeroValueSize(defaultOriginValue); 446currentIterationValue = AnimatedTypeHelpers.AddSize( 448AnimatedTypeHelpers.ScaleSize(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 455return AnimatedTypeHelpers.AddSize(defaultOriginValue, currentIterationValue); 951totalLength += AnimatedTypeHelpers.GetSegmentLengthSize(prevKeyValue, currentKeyValue); 974totalLength += 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)
859totalLength += AnimatedTypeHelpers.GetSegmentLengthString(prevKeyValue, currentKeyValue); 882totalLength += AnimatedTypeHelpers.GetSegmentLengthString(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\Vector3DAnimation.cs (9)
304to = AnimatedTypeHelpers.AddVector3D(_keyValues[0], _keyValues[1]); 322&& !AnimatedTypeHelpers.IsValidAnimationValueVector3D(defaultOriginValue)) 333&& !AnimatedTypeHelpers.IsValidAnimationValueVector3D(defaultDestinationValue)) 350Vector3D accumulator = AnimatedTypeHelpers.SubtractVector3D(to, from); 352accumulated = AnimatedTypeHelpers.ScaleVector3D(accumulator, currentRepeat); 358return AnimatedTypeHelpers.AddVector3D( 360AnimatedTypeHelpers.AddVector3D( 362AnimatedTypeHelpers.InterpolateVector3D(from, to, progress))); 427return AnimatedTypeHelpers.IsValidAnimationValueVector3D(typedValue.Value);
System\Windows\Media\Animation\Generated\Vector3DAnimationUsingKeyFrames.cs (6)
401fromValue = AnimatedTypeHelpers.GetZeroValueVector3D(defaultOriginValue); 446currentIterationValue = AnimatedTypeHelpers.AddVector3D( 448AnimatedTypeHelpers.ScaleVector3D(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 455return AnimatedTypeHelpers.AddVector3D(defaultOriginValue, currentIterationValue); 951totalLength += AnimatedTypeHelpers.GetSegmentLengthVector3D(prevKeyValue, currentKeyValue); 974totalLength += AnimatedTypeHelpers.GetSegmentLengthVector3D(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\VectorAnimation.cs (9)
304to = AnimatedTypeHelpers.AddVector(_keyValues[0], _keyValues[1]); 322&& !AnimatedTypeHelpers.IsValidAnimationValueVector(defaultOriginValue)) 333&& !AnimatedTypeHelpers.IsValidAnimationValueVector(defaultDestinationValue)) 350Vector accumulator = AnimatedTypeHelpers.SubtractVector(to, from); 352accumulated = AnimatedTypeHelpers.ScaleVector(accumulator, currentRepeat); 358return AnimatedTypeHelpers.AddVector( 360AnimatedTypeHelpers.AddVector( 362AnimatedTypeHelpers.InterpolateVector(from, to, progress))); 427return AnimatedTypeHelpers.IsValidAnimationValueVector(typedValue.Value);
System\Windows\Media\Animation\Generated\VectorAnimationUsingKeyFrames.cs (6)
401fromValue = AnimatedTypeHelpers.GetZeroValueVector(defaultOriginValue); 446currentIterationValue = AnimatedTypeHelpers.AddVector( 448AnimatedTypeHelpers.ScaleVector(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 455return AnimatedTypeHelpers.AddVector(defaultOriginValue, currentIterationValue); 951totalLength += AnimatedTypeHelpers.GetSegmentLengthVector(prevKeyValue, currentKeyValue); 974totalLength += AnimatedTypeHelpers.GetSegmentLengthVector(prevKeyValue, _keyFrames[index].Value);