298 references to AnimatedTypeHelpers
PresentationCore (298)
System\Windows\Media\Animation\Generated\BooleanAnimationUsingKeyFrames.cs (2)
850totalLength += AnimatedTypeHelpers.GetSegmentLengthBoolean(prevKeyValue, currentKeyValue); 873totalLength += AnimatedTypeHelpers.GetSegmentLengthBoolean(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\ByteAnimation.cs (9)
293to = AnimatedTypeHelpers.AddByte(_keyValues[0], _keyValues[1]); 311&& !AnimatedTypeHelpers.IsValidAnimationValueByte(defaultOriginValue)) 322&& !AnimatedTypeHelpers.IsValidAnimationValueByte(defaultDestinationValue)) 339Byte accumulator = AnimatedTypeHelpers.SubtractByte(to, from); 341accumulated = AnimatedTypeHelpers.ScaleByte(accumulator, currentRepeat); 347return AnimatedTypeHelpers.AddByte( 349AnimatedTypeHelpers.AddByte( 351AnimatedTypeHelpers.InterpolateByte(from, to, progress))); 416return AnimatedTypeHelpers.IsValidAnimationValueByte(typedValue.Value);
System\Windows\Media\Animation\Generated\ByteAnimationUsingKeyFrames.cs (6)
390fromValue = AnimatedTypeHelpers.GetZeroValueByte(defaultOriginValue); 435currentIterationValue = AnimatedTypeHelpers.AddByte( 437AnimatedTypeHelpers.ScaleByte(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 444return AnimatedTypeHelpers.AddByte(defaultOriginValue, currentIterationValue); 942totalLength += AnimatedTypeHelpers.GetSegmentLengthByte(prevKeyValue, currentKeyValue); 965totalLength += AnimatedTypeHelpers.GetSegmentLengthByte(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\CharAnimationUsingKeyFrames.cs (2)
850totalLength += AnimatedTypeHelpers.GetSegmentLengthChar(prevKeyValue, currentKeyValue); 873totalLength += AnimatedTypeHelpers.GetSegmentLengthChar(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\ColorAnimation.cs (9)
293to = AnimatedTypeHelpers.AddColor(_keyValues[0], _keyValues[1]); 311&& !AnimatedTypeHelpers.IsValidAnimationValueColor(defaultOriginValue)) 322&& !AnimatedTypeHelpers.IsValidAnimationValueColor(defaultDestinationValue)) 339Color accumulator = AnimatedTypeHelpers.SubtractColor(to, from); 341accumulated = AnimatedTypeHelpers.ScaleColor(accumulator, currentRepeat); 347return AnimatedTypeHelpers.AddColor( 349AnimatedTypeHelpers.AddColor( 351AnimatedTypeHelpers.InterpolateColor(from, to, progress))); 416return AnimatedTypeHelpers.IsValidAnimationValueColor(typedValue.Value);
System\Windows\Media\Animation\Generated\ColorAnimationUsingKeyFrames.cs (6)
390fromValue = AnimatedTypeHelpers.GetZeroValueColor(defaultOriginValue); 435currentIterationValue = AnimatedTypeHelpers.AddColor( 437AnimatedTypeHelpers.ScaleColor(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 444return AnimatedTypeHelpers.AddColor(defaultOriginValue, currentIterationValue); 942totalLength += AnimatedTypeHelpers.GetSegmentLengthColor(prevKeyValue, currentKeyValue); 965totalLength += AnimatedTypeHelpers.GetSegmentLengthColor(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\DecimalAnimation.cs (9)
293to = AnimatedTypeHelpers.AddDecimal(_keyValues[0], _keyValues[1]); 311&& !AnimatedTypeHelpers.IsValidAnimationValueDecimal(defaultOriginValue)) 322&& !AnimatedTypeHelpers.IsValidAnimationValueDecimal(defaultDestinationValue)) 339Decimal accumulator = AnimatedTypeHelpers.SubtractDecimal(to, from); 341accumulated = AnimatedTypeHelpers.ScaleDecimal(accumulator, currentRepeat); 347return AnimatedTypeHelpers.AddDecimal( 349AnimatedTypeHelpers.AddDecimal( 351AnimatedTypeHelpers.InterpolateDecimal(from, to, progress))); 416return AnimatedTypeHelpers.IsValidAnimationValueDecimal(typedValue.Value);
System\Windows\Media\Animation\Generated\DecimalAnimationUsingKeyFrames.cs (6)
390fromValue = AnimatedTypeHelpers.GetZeroValueDecimal(defaultOriginValue); 435currentIterationValue = AnimatedTypeHelpers.AddDecimal( 437AnimatedTypeHelpers.ScaleDecimal(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 444return AnimatedTypeHelpers.AddDecimal(defaultOriginValue, currentIterationValue); 942totalLength += AnimatedTypeHelpers.GetSegmentLengthDecimal(prevKeyValue, currentKeyValue); 965totalLength += AnimatedTypeHelpers.GetSegmentLengthDecimal(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\DoubleAnimation.cs (9)
293to = AnimatedTypeHelpers.AddDouble(_keyValues[0], _keyValues[1]); 311&& !AnimatedTypeHelpers.IsValidAnimationValueDouble(defaultOriginValue)) 322&& !AnimatedTypeHelpers.IsValidAnimationValueDouble(defaultDestinationValue)) 339Double accumulator = AnimatedTypeHelpers.SubtractDouble(to, from); 341accumulated = AnimatedTypeHelpers.ScaleDouble(accumulator, currentRepeat); 347return AnimatedTypeHelpers.AddDouble( 349AnimatedTypeHelpers.AddDouble( 351AnimatedTypeHelpers.InterpolateDouble(from, to, progress))); 416return AnimatedTypeHelpers.IsValidAnimationValueDouble(typedValue.Value);
System\Windows\Media\Animation\Generated\DoubleAnimationUsingKeyFrames.cs (6)
390fromValue = AnimatedTypeHelpers.GetZeroValueDouble(defaultOriginValue); 435currentIterationValue = AnimatedTypeHelpers.AddDouble( 437AnimatedTypeHelpers.ScaleDouble(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 444return AnimatedTypeHelpers.AddDouble(defaultOriginValue, currentIterationValue); 942totalLength += AnimatedTypeHelpers.GetSegmentLengthDouble(prevKeyValue, currentKeyValue); 965totalLength += AnimatedTypeHelpers.GetSegmentLengthDouble(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (16)
108return AnimatedTypeHelpers.InterpolateByte(baseValue, Value, keyFrameProgress); 233return AnimatedTypeHelpers.InterpolateColor(baseValue, Value, keyFrameProgress); 358return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, keyFrameProgress); 483return AnimatedTypeHelpers.InterpolateDouble(baseValue, Value, keyFrameProgress); 608return AnimatedTypeHelpers.InterpolateInt16(baseValue, Value, keyFrameProgress); 733return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, keyFrameProgress); 858return AnimatedTypeHelpers.InterpolateInt64(baseValue, Value, keyFrameProgress); 983return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, keyFrameProgress); 1108return AnimatedTypeHelpers.InterpolatePoint3D(baseValue, Value, keyFrameProgress); 1233return AnimatedTypeHelpers.InterpolateQuaternion(baseValue, Value, keyFrameProgress, UseShortestPath); 1358return AnimatedTypeHelpers.InterpolateRotation3D(baseValue, Value, keyFrameProgress); 1483return AnimatedTypeHelpers.InterpolateRect(baseValue, Value, keyFrameProgress); 1608return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, keyFrameProgress); 1733return AnimatedTypeHelpers.InterpolateSize(baseValue, Value, keyFrameProgress); 1858return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, keyFrameProgress); 1983return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\Int16Animation.cs (9)
293to = AnimatedTypeHelpers.AddInt16(_keyValues[0], _keyValues[1]); 311&& !AnimatedTypeHelpers.IsValidAnimationValueInt16(defaultOriginValue)) 322&& !AnimatedTypeHelpers.IsValidAnimationValueInt16(defaultDestinationValue)) 339Int16 accumulator = AnimatedTypeHelpers.SubtractInt16(to, from); 341accumulated = AnimatedTypeHelpers.ScaleInt16(accumulator, currentRepeat); 347return AnimatedTypeHelpers.AddInt16( 349AnimatedTypeHelpers.AddInt16( 351AnimatedTypeHelpers.InterpolateInt16(from, to, progress))); 416return AnimatedTypeHelpers.IsValidAnimationValueInt16(typedValue.Value);
System\Windows\Media\Animation\Generated\Int16AnimationUsingKeyFrames.cs (6)
390fromValue = AnimatedTypeHelpers.GetZeroValueInt16(defaultOriginValue); 435currentIterationValue = AnimatedTypeHelpers.AddInt16( 437AnimatedTypeHelpers.ScaleInt16(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 444return AnimatedTypeHelpers.AddInt16(defaultOriginValue, currentIterationValue); 942totalLength += AnimatedTypeHelpers.GetSegmentLengthInt16(prevKeyValue, currentKeyValue); 965totalLength += AnimatedTypeHelpers.GetSegmentLengthInt16(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\Int32Animation.cs (9)
293to = AnimatedTypeHelpers.AddInt32(_keyValues[0], _keyValues[1]); 311&& !AnimatedTypeHelpers.IsValidAnimationValueInt32(defaultOriginValue)) 322&& !AnimatedTypeHelpers.IsValidAnimationValueInt32(defaultDestinationValue)) 339Int32 accumulator = AnimatedTypeHelpers.SubtractInt32(to, from); 341accumulated = AnimatedTypeHelpers.ScaleInt32(accumulator, currentRepeat); 347return AnimatedTypeHelpers.AddInt32( 349AnimatedTypeHelpers.AddInt32( 351AnimatedTypeHelpers.InterpolateInt32(from, to, progress))); 416return AnimatedTypeHelpers.IsValidAnimationValueInt32(typedValue.Value);
System\Windows\Media\Animation\Generated\Int32AnimationUsingKeyFrames.cs (6)
390fromValue = AnimatedTypeHelpers.GetZeroValueInt32(defaultOriginValue); 435currentIterationValue = AnimatedTypeHelpers.AddInt32( 437AnimatedTypeHelpers.ScaleInt32(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 444return AnimatedTypeHelpers.AddInt32(defaultOriginValue, currentIterationValue); 942totalLength += AnimatedTypeHelpers.GetSegmentLengthInt32(prevKeyValue, currentKeyValue); 965totalLength += AnimatedTypeHelpers.GetSegmentLengthInt32(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\Int64Animation.cs (9)
293to = AnimatedTypeHelpers.AddInt64(_keyValues[0], _keyValues[1]); 311&& !AnimatedTypeHelpers.IsValidAnimationValueInt64(defaultOriginValue)) 322&& !AnimatedTypeHelpers.IsValidAnimationValueInt64(defaultDestinationValue)) 339Int64 accumulator = AnimatedTypeHelpers.SubtractInt64(to, from); 341accumulated = AnimatedTypeHelpers.ScaleInt64(accumulator, currentRepeat); 347return AnimatedTypeHelpers.AddInt64( 349AnimatedTypeHelpers.AddInt64( 351AnimatedTypeHelpers.InterpolateInt64(from, to, progress))); 416return AnimatedTypeHelpers.IsValidAnimationValueInt64(typedValue.Value);
System\Windows\Media\Animation\Generated\Int64AnimationUsingKeyFrames.cs (6)
390fromValue = AnimatedTypeHelpers.GetZeroValueInt64(defaultOriginValue); 435currentIterationValue = AnimatedTypeHelpers.AddInt64( 437AnimatedTypeHelpers.ScaleInt64(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 444return AnimatedTypeHelpers.AddInt64(defaultOriginValue, currentIterationValue); 942totalLength += AnimatedTypeHelpers.GetSegmentLengthInt64(prevKeyValue, currentKeyValue); 965totalLength += AnimatedTypeHelpers.GetSegmentLengthInt64(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (16)
88return AnimatedTypeHelpers.InterpolateByte(baseValue, Value, keyFrameProgress); 165return AnimatedTypeHelpers.InterpolateColor(baseValue, Value, keyFrameProgress); 242return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, keyFrameProgress); 319return AnimatedTypeHelpers.InterpolateDouble(baseValue, Value, keyFrameProgress); 396return AnimatedTypeHelpers.InterpolateInt16(baseValue, Value, keyFrameProgress); 473return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, keyFrameProgress); 550return AnimatedTypeHelpers.InterpolateInt64(baseValue, Value, keyFrameProgress); 627return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, keyFrameProgress); 704return AnimatedTypeHelpers.InterpolatePoint3D(baseValue, Value, keyFrameProgress); 781return AnimatedTypeHelpers.InterpolateQuaternion(baseValue, Value, keyFrameProgress, UseShortestPath); 858return AnimatedTypeHelpers.InterpolateRotation3D(baseValue, Value, keyFrameProgress); 935return AnimatedTypeHelpers.InterpolateRect(baseValue, Value, keyFrameProgress); 1012return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, keyFrameProgress); 1089return AnimatedTypeHelpers.InterpolateSize(baseValue, Value, keyFrameProgress); 1166return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, keyFrameProgress); 1243return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\MatrixAnimationUsingKeyFrames.cs (2)
850totalLength += AnimatedTypeHelpers.GetSegmentLengthMatrix(prevKeyValue, currentKeyValue); 873totalLength += AnimatedTypeHelpers.GetSegmentLengthMatrix(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (2)
850totalLength += AnimatedTypeHelpers.GetSegmentLengthObject(prevKeyValue, currentKeyValue); 873totalLength += AnimatedTypeHelpers.GetSegmentLengthObject(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\Point3DAnimation.cs (9)
293to = AnimatedTypeHelpers.AddPoint3D(_keyValues[0], _keyValues[1]); 311&& !AnimatedTypeHelpers.IsValidAnimationValuePoint3D(defaultOriginValue)) 322&& !AnimatedTypeHelpers.IsValidAnimationValuePoint3D(defaultDestinationValue)) 339Point3D accumulator = AnimatedTypeHelpers.SubtractPoint3D(to, from); 341accumulated = AnimatedTypeHelpers.ScalePoint3D(accumulator, currentRepeat); 347return AnimatedTypeHelpers.AddPoint3D( 349AnimatedTypeHelpers.AddPoint3D( 351AnimatedTypeHelpers.InterpolatePoint3D(from, to, progress))); 416return AnimatedTypeHelpers.IsValidAnimationValuePoint3D(typedValue.Value);
System\Windows\Media\Animation\Generated\Point3DAnimationUsingKeyFrames.cs (6)
390fromValue = AnimatedTypeHelpers.GetZeroValuePoint3D(defaultOriginValue); 435currentIterationValue = AnimatedTypeHelpers.AddPoint3D( 437AnimatedTypeHelpers.ScalePoint3D(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 444return AnimatedTypeHelpers.AddPoint3D(defaultOriginValue, currentIterationValue); 942totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint3D(prevKeyValue, currentKeyValue); 965totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint3D(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\PointAnimation.cs (9)
293to = AnimatedTypeHelpers.AddPoint(_keyValues[0], _keyValues[1]); 311&& !AnimatedTypeHelpers.IsValidAnimationValuePoint(defaultOriginValue)) 322&& !AnimatedTypeHelpers.IsValidAnimationValuePoint(defaultDestinationValue)) 339Point accumulator = AnimatedTypeHelpers.SubtractPoint(to, from); 341accumulated = AnimatedTypeHelpers.ScalePoint(accumulator, currentRepeat); 347return AnimatedTypeHelpers.AddPoint( 349AnimatedTypeHelpers.AddPoint( 351AnimatedTypeHelpers.InterpolatePoint(from, to, progress))); 416return AnimatedTypeHelpers.IsValidAnimationValuePoint(typedValue.Value);
System\Windows\Media\Animation\Generated\PointAnimationUsingKeyFrames.cs (6)
390fromValue = AnimatedTypeHelpers.GetZeroValuePoint(defaultOriginValue); 435currentIterationValue = AnimatedTypeHelpers.AddPoint( 437AnimatedTypeHelpers.ScalePoint(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 444return AnimatedTypeHelpers.AddPoint(defaultOriginValue, currentIterationValue); 942totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint(prevKeyValue, currentKeyValue); 965totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\QuaternionAnimation.cs (9)
293to = AnimatedTypeHelpers.AddQuaternion(_keyValues[0], _keyValues[1]); 311&& !AnimatedTypeHelpers.IsValidAnimationValueQuaternion(defaultOriginValue)) 322&& !AnimatedTypeHelpers.IsValidAnimationValueQuaternion(defaultDestinationValue)) 339Quaternion accumulator = AnimatedTypeHelpers.SubtractQuaternion(to, from); 341accumulated = AnimatedTypeHelpers.ScaleQuaternion(accumulator, currentRepeat); 347return AnimatedTypeHelpers.AddQuaternion( 349AnimatedTypeHelpers.AddQuaternion( 351AnimatedTypeHelpers.InterpolateQuaternion(from, to, progress, UseShortestPath))); 416return AnimatedTypeHelpers.IsValidAnimationValueQuaternion(typedValue.Value);
System\Windows\Media\Animation\Generated\QuaternionAnimationUsingKeyFrames.cs (6)
390fromValue = AnimatedTypeHelpers.GetZeroValueQuaternion(defaultOriginValue); 435currentIterationValue = AnimatedTypeHelpers.AddQuaternion( 437AnimatedTypeHelpers.ScaleQuaternion(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 444return AnimatedTypeHelpers.AddQuaternion(defaultOriginValue, currentIterationValue); 942totalLength += AnimatedTypeHelpers.GetSegmentLengthQuaternion(prevKeyValue, currentKeyValue); 965totalLength += AnimatedTypeHelpers.GetSegmentLengthQuaternion(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\RectAnimation.cs (9)
293to = AnimatedTypeHelpers.AddRect(_keyValues[0], _keyValues[1]); 311&& !AnimatedTypeHelpers.IsValidAnimationValueRect(defaultOriginValue)) 322&& !AnimatedTypeHelpers.IsValidAnimationValueRect(defaultDestinationValue)) 339Rect accumulator = AnimatedTypeHelpers.SubtractRect(to, from); 341accumulated = AnimatedTypeHelpers.ScaleRect(accumulator, currentRepeat); 347return AnimatedTypeHelpers.AddRect( 349AnimatedTypeHelpers.AddRect( 351AnimatedTypeHelpers.InterpolateRect(from, to, progress))); 416return AnimatedTypeHelpers.IsValidAnimationValueRect(typedValue.Value);
System\Windows\Media\Animation\Generated\RectAnimationUsingKeyFrames.cs (6)
390fromValue = AnimatedTypeHelpers.GetZeroValueRect(defaultOriginValue); 435currentIterationValue = AnimatedTypeHelpers.AddRect( 437AnimatedTypeHelpers.ScaleRect(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 444return AnimatedTypeHelpers.AddRect(defaultOriginValue, currentIterationValue); 942totalLength += AnimatedTypeHelpers.GetSegmentLengthRect(prevKeyValue, currentKeyValue); 965totalLength += AnimatedTypeHelpers.GetSegmentLengthRect(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\Rotation3DAnimation.cs (9)
293to = AnimatedTypeHelpers.AddRotation3D(_keyValues[0], _keyValues[1]); 311&& !AnimatedTypeHelpers.IsValidAnimationValueRotation3D(defaultOriginValue)) 322&& !AnimatedTypeHelpers.IsValidAnimationValueRotation3D(defaultDestinationValue)) 339Rotation3D accumulator = AnimatedTypeHelpers.SubtractRotation3D(to, from); 341accumulated = AnimatedTypeHelpers.ScaleRotation3D(accumulator, currentRepeat); 347return AnimatedTypeHelpers.AddRotation3D( 349AnimatedTypeHelpers.AddRotation3D( 351AnimatedTypeHelpers.InterpolateRotation3D(from, to, progress))); 416return AnimatedTypeHelpers.IsValidAnimationValueRotation3D(typedValue);
System\Windows\Media\Animation\Generated\Rotation3DAnimationUsingKeyFrames.cs (6)
390fromValue = AnimatedTypeHelpers.GetZeroValueRotation3D(defaultOriginValue); 435currentIterationValue = AnimatedTypeHelpers.AddRotation3D( 437AnimatedTypeHelpers.ScaleRotation3D(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 444return AnimatedTypeHelpers.AddRotation3D(defaultOriginValue, currentIterationValue); 942totalLength += AnimatedTypeHelpers.GetSegmentLengthRotation3D(prevKeyValue, currentKeyValue); 965totalLength += AnimatedTypeHelpers.GetSegmentLengthRotation3D(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\SingleAnimation.cs (9)
293to = AnimatedTypeHelpers.AddSingle(_keyValues[0], _keyValues[1]); 311&& !AnimatedTypeHelpers.IsValidAnimationValueSingle(defaultOriginValue)) 322&& !AnimatedTypeHelpers.IsValidAnimationValueSingle(defaultDestinationValue)) 339Single accumulator = AnimatedTypeHelpers.SubtractSingle(to, from); 341accumulated = AnimatedTypeHelpers.ScaleSingle(accumulator, currentRepeat); 347return AnimatedTypeHelpers.AddSingle( 349AnimatedTypeHelpers.AddSingle( 351AnimatedTypeHelpers.InterpolateSingle(from, to, progress))); 416return AnimatedTypeHelpers.IsValidAnimationValueSingle(typedValue.Value);
System\Windows\Media\Animation\Generated\SingleAnimationUsingKeyFrames.cs (6)
390fromValue = AnimatedTypeHelpers.GetZeroValueSingle(defaultOriginValue); 435currentIterationValue = AnimatedTypeHelpers.AddSingle( 437AnimatedTypeHelpers.ScaleSingle(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 444return AnimatedTypeHelpers.AddSingle(defaultOriginValue, currentIterationValue); 942totalLength += AnimatedTypeHelpers.GetSegmentLengthSingle(prevKeyValue, currentKeyValue); 965totalLength += AnimatedTypeHelpers.GetSegmentLengthSingle(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\SizeAnimation.cs (9)
293to = AnimatedTypeHelpers.AddSize(_keyValues[0], _keyValues[1]); 311&& !AnimatedTypeHelpers.IsValidAnimationValueSize(defaultOriginValue)) 322&& !AnimatedTypeHelpers.IsValidAnimationValueSize(defaultDestinationValue)) 339Size accumulator = AnimatedTypeHelpers.SubtractSize(to, from); 341accumulated = AnimatedTypeHelpers.ScaleSize(accumulator, currentRepeat); 347return AnimatedTypeHelpers.AddSize( 349AnimatedTypeHelpers.AddSize( 351AnimatedTypeHelpers.InterpolateSize(from, to, progress))); 416return AnimatedTypeHelpers.IsValidAnimationValueSize(typedValue.Value);
System\Windows\Media\Animation\Generated\SizeAnimationUsingKeyFrames.cs (6)
390fromValue = AnimatedTypeHelpers.GetZeroValueSize(defaultOriginValue); 435currentIterationValue = AnimatedTypeHelpers.AddSize( 437AnimatedTypeHelpers.ScaleSize(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 444return AnimatedTypeHelpers.AddSize(defaultOriginValue, currentIterationValue); 942totalLength += AnimatedTypeHelpers.GetSegmentLengthSize(prevKeyValue, currentKeyValue); 965totalLength += AnimatedTypeHelpers.GetSegmentLengthSize(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (16)
111return AnimatedTypeHelpers.InterpolateByte(baseValue, Value, splineProgress); 238return AnimatedTypeHelpers.InterpolateColor(baseValue, Value, splineProgress); 365return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, splineProgress); 492return AnimatedTypeHelpers.InterpolateDouble(baseValue, Value, splineProgress); 619return AnimatedTypeHelpers.InterpolateInt16(baseValue, Value, splineProgress); 746return AnimatedTypeHelpers.InterpolateInt32(baseValue, Value, splineProgress); 873return AnimatedTypeHelpers.InterpolateInt64(baseValue, Value, splineProgress); 1000return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, splineProgress); 1127return AnimatedTypeHelpers.InterpolatePoint3D(baseValue, Value, splineProgress); 1254return AnimatedTypeHelpers.InterpolateQuaternion(baseValue, Value, splineProgress, UseShortestPath); 1381return AnimatedTypeHelpers.InterpolateRotation3D(baseValue, Value, splineProgress); 1508return AnimatedTypeHelpers.InterpolateRect(baseValue, Value, splineProgress); 1635return AnimatedTypeHelpers.InterpolateSingle(baseValue, Value, splineProgress); 1762return AnimatedTypeHelpers.InterpolateSize(baseValue, Value, splineProgress); 1889return AnimatedTypeHelpers.InterpolateVector(baseValue, Value, splineProgress); 2016return AnimatedTypeHelpers.InterpolateVector3D(baseValue, Value, splineProgress);
System\Windows\Media\Animation\Generated\StringAnimationUsingKeyFrames.cs (2)
850totalLength += AnimatedTypeHelpers.GetSegmentLengthString(prevKeyValue, currentKeyValue); 873totalLength += AnimatedTypeHelpers.GetSegmentLengthString(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\Vector3DAnimation.cs (9)
293to = AnimatedTypeHelpers.AddVector3D(_keyValues[0], _keyValues[1]); 311&& !AnimatedTypeHelpers.IsValidAnimationValueVector3D(defaultOriginValue)) 322&& !AnimatedTypeHelpers.IsValidAnimationValueVector3D(defaultDestinationValue)) 339Vector3D accumulator = AnimatedTypeHelpers.SubtractVector3D(to, from); 341accumulated = AnimatedTypeHelpers.ScaleVector3D(accumulator, currentRepeat); 347return AnimatedTypeHelpers.AddVector3D( 349AnimatedTypeHelpers.AddVector3D( 351AnimatedTypeHelpers.InterpolateVector3D(from, to, progress))); 416return AnimatedTypeHelpers.IsValidAnimationValueVector3D(typedValue.Value);
System\Windows\Media\Animation\Generated\Vector3DAnimationUsingKeyFrames.cs (6)
390fromValue = AnimatedTypeHelpers.GetZeroValueVector3D(defaultOriginValue); 435currentIterationValue = AnimatedTypeHelpers.AddVector3D( 437AnimatedTypeHelpers.ScaleVector3D(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 444return AnimatedTypeHelpers.AddVector3D(defaultOriginValue, currentIterationValue); 942totalLength += AnimatedTypeHelpers.GetSegmentLengthVector3D(prevKeyValue, currentKeyValue); 965totalLength += AnimatedTypeHelpers.GetSegmentLengthVector3D(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\VectorAnimation.cs (9)
293to = AnimatedTypeHelpers.AddVector(_keyValues[0], _keyValues[1]); 311&& !AnimatedTypeHelpers.IsValidAnimationValueVector(defaultOriginValue)) 322&& !AnimatedTypeHelpers.IsValidAnimationValueVector(defaultDestinationValue)) 339Vector accumulator = AnimatedTypeHelpers.SubtractVector(to, from); 341accumulated = AnimatedTypeHelpers.ScaleVector(accumulator, currentRepeat); 347return AnimatedTypeHelpers.AddVector( 349AnimatedTypeHelpers.AddVector( 351AnimatedTypeHelpers.InterpolateVector(from, to, progress))); 416return AnimatedTypeHelpers.IsValidAnimationValueVector(typedValue.Value);
System\Windows\Media\Animation\Generated\VectorAnimationUsingKeyFrames.cs (6)
390fromValue = AnimatedTypeHelpers.GetZeroValueVector(defaultOriginValue); 435currentIterationValue = AnimatedTypeHelpers.AddVector( 437AnimatedTypeHelpers.ScaleVector(GetResolvedKeyFrameValue(maxKeyFrameIndex), currentRepeat)); 444return AnimatedTypeHelpers.AddVector(defaultOriginValue, currentIterationValue); 942totalLength += AnimatedTypeHelpers.GetSegmentLengthVector(prevKeyValue, currentKeyValue); 965totalLength += AnimatedTypeHelpers.GetSegmentLengthVector(prevKeyValue, _keyFrames[index].Value);