Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / Animation / QuarticEase.cs / 1305600 / QuarticEase.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation, 2008 // // File: QuarticEase.cs //----------------------------------------------------------------------------- namespace System.Windows.Media.Animation { ////// This class implements an easing function that gives a quartic curve toward the destination /// public class QuarticEase : EasingFunctionBase { protected override double EaseInCore(double normalizedTime) { return normalizedTime * normalizedTime * normalizedTime * normalizedTime; } protected override Freezable CreateInstanceCore() { return new QuarticEase(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation, 2008 // // File: QuarticEase.cs //----------------------------------------------------------------------------- namespace System.Windows.Media.Animation { ////// This class implements an easing function that gives a quartic curve toward the destination /// public class QuarticEase : EasingFunctionBase { protected override double EaseInCore(double normalizedTime) { return normalizedTime * normalizedTime * normalizedTime * normalizedTime; } protected override Freezable CreateInstanceCore() { return new QuarticEase(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebPartCatalogAddVerb.cs
- PeerToPeerException.cs
- DataGridViewColumnCollectionDialog.cs
- DataBoundControl.cs
- XmlMapping.cs
- ListView.cs
- StylusPointDescription.cs
- KeyEvent.cs
- TreeBuilder.cs
- CqlLexerHelpers.cs
- RuntimeVariableList.cs
- CommandID.cs
- StylusTip.cs
- KnownTypesProvider.cs
- DefaultEventAttribute.cs
- Publisher.cs
- TypefaceCollection.cs
- CompareInfo.cs
- WorkflowRuntime.cs
- ContextMenu.cs
- StringStorage.cs
- ObjectStateFormatter.cs
- SpotLight.cs
- MenuBindingsEditorForm.cs
- DataGridViewHitTestInfo.cs
- RequestQueryParser.cs
- SignatureResourceHelper.cs
- DataGridViewCellParsingEventArgs.cs
- SQLInt16.cs
- MulticastDelegate.cs
- Preprocessor.cs
- Timer.cs
- EntityExpressionVisitor.cs
- XmlSchema.cs
- EventLogReader.cs
- ApplyTemplatesAction.cs
- DataBindingList.cs
- Stylesheet.cs
- WindowsComboBox.cs
- FixedPage.cs
- GridViewDeleteEventArgs.cs
- BevelBitmapEffect.cs
- ActivationService.cs
- ClosureBinding.cs
- EmptyEnumerator.cs
- LinqDataView.cs
- updateconfighost.cs
- GetPageCompletedEventArgs.cs
- TransformFinalBlockRequest.cs
- ApplicationInfo.cs
- CursorEditor.cs
- ItemChangedEventArgs.cs
- SHA1Managed.cs
- BitmapMetadata.cs
- ProviderMetadata.cs
- MethodToken.cs
- XmlSchemaInclude.cs
- MenuBase.cs
- UITypeEditor.cs
- PageContentCollection.cs
- EmitterCache.cs
- Int16Animation.cs
- TextOptionsInternal.cs
- CounterCreationData.cs
- TextModifierScope.cs
- WebPartMovingEventArgs.cs
- FileDialog_Vista.cs
- COM2EnumConverter.cs
- StackBuilderSink.cs
- ConfigurationValidatorAttribute.cs
- WebRequestModuleElementCollection.cs
- CollectionViewGroupRoot.cs
- XmlTextWriter.cs
- __ConsoleStream.cs
- LeafCellTreeNode.cs
- SettingsProperty.cs
- AlphaSortedEnumConverter.cs
- TransferMode.cs
- WorkflowTraceTransfer.cs
- PageWrapper.cs
- ArgIterator.cs
- CategoryEditor.cs
- EndPoint.cs
- TreeNodeMouseHoverEvent.cs
- SynchronizedInputProviderWrapper.cs
- InstanceDataCollectionCollection.cs
- ConsoleCancelEventArgs.cs
- Emitter.cs
- DefaultTextStore.cs
- InteropEnvironment.cs
- ModuleElement.cs
- ForwardPositionQuery.cs
- CollectionViewProxy.cs
- StrokeDescriptor.cs
- DrawingContext.cs
- AutomationPattern.cs
- MessageDecoder.cs
- Delegate.cs
- CollectionChangedEventManager.cs
- GradientStop.cs