Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / Animation / EasingQuaternionKeyFrame.cs / 1305600 / EasingQuaternionKeyFrame.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // //--------------------------------------------------------------------------- using System; using System.Windows; using MS.Internal.KnownBoxes; namespace System.Windows.Media.Animation { ////// This class is used as part of a QuaternionKeyFrameCollection in /// conjunction with a KeyFrameQuaternionAnimation to animate a /// Quaternion property value along a set of key frames. /// /// This QuaternionKeyFrame interpolates the between the Quaternion Value of /// the previous key frame and its own Value Linearly with Easing to produce its output value. /// public partial class EasingQuaternionKeyFrame : QuaternionKeyFrame { ////// UseShortestPath Property /// public static readonly DependencyProperty UseShortestPathProperty = DependencyProperty.Register( "UseShortestPath", typeof(bool), typeof(EasingQuaternionKeyFrame), new PropertyMetadata(/* defaultValue = */ BooleanBoxes.TrueBox)); ////// If true, the animation will automatically flip the sign of the destination /// Quaternion to ensure the shortest path is taken. /// public bool UseShortestPath { get { return (bool) GetValue(UseShortestPathProperty); } set { SetValue(UseShortestPathProperty, value); } } } } // 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
- CreateUserErrorEventArgs.cs
- PlainXmlDeserializer.cs
- UIElementCollection.cs
- ButtonColumn.cs
- ObjectReaderCompiler.cs
- MulticastOption.cs
- Common.cs
- CodePrimitiveExpression.cs
- SqlExpressionNullability.cs
- RelationshipConverter.cs
- CellPartitioner.cs
- ArrayTypeMismatchException.cs
- ConsumerConnectionPointCollection.cs
- CommandDevice.cs
- newinstructionaction.cs
- _ConnectionGroup.cs
- VBIdentifierName.cs
- StringValueSerializer.cs
- LabelLiteral.cs
- NamedPermissionSet.cs
- RectangleF.cs
- ChangePassword.cs
- TextAction.cs
- FileCodeGroup.cs
- ISFClipboardData.cs
- TextViewBase.cs
- externdll.cs
- SinglePageViewer.cs
- KeyboardEventArgs.cs
- XmlSchemaIdentityConstraint.cs
- NavigationEventArgs.cs
- BindingBase.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- ImageMap.cs
- NodeLabelEditEvent.cs
- OptimisticConcurrencyException.cs
- SettingsProviderCollection.cs
- Graph.cs
- DynamicMetaObjectBinder.cs
- TextFormatter.cs
- MatrixIndependentAnimationStorage.cs
- NavigationFailedEventArgs.cs
- DataSvcMapFile.cs
- SqlDataSourceFilteringEventArgs.cs
- FormsAuthenticationCredentials.cs
- Util.cs
- MinimizableAttributeTypeConverter.cs
- Point.cs
- CryptoStream.cs
- WebBrowser.cs
- UIHelper.cs
- CodeSnippetTypeMember.cs
- AtomParser.cs
- OdbcParameterCollection.cs
- WebPartsSection.cs
- DiffuseMaterial.cs
- SrgsItemList.cs
- Separator.cs
- ExpressionVisitor.cs
- EventPropertyMap.cs
- LabelDesigner.cs
- Socket.cs
- EmptyElement.cs
- ArgumentException.cs
- SimpleBitVector32.cs
- RTLAwareMessageBox.cs
- assertwrapper.cs
- InheritedPropertyChangedEventArgs.cs
- BamlLocalizableResource.cs
- XmlAttributeCollection.cs
- DataGridViewCellLinkedList.cs
- GPPOINT.cs
- DelegateSerializationHolder.cs
- MetadataFile.cs
- OdbcConnectionHandle.cs
- SrgsDocument.cs
- MarginsConverter.cs
- ApplicationSettingsBase.cs
- SocketElement.cs
- SmiGettersStream.cs
- ConstraintConverter.cs
- HandleCollector.cs
- DependencyPropertyHelper.cs
- WebEventCodes.cs
- WSSecureConversation.cs
- IgnoreSectionHandler.cs
- RemotingException.cs
- MessageTraceRecord.cs
- AccessDataSourceWizardForm.cs
- Rfc2898DeriveBytes.cs
- NativeMethodsCLR.cs
- TextBoxBase.cs
- NumericPagerField.cs
- SaveFileDialog.cs
- GroupItem.cs
- EmptyReadOnlyDictionaryInternal.cs
- Constraint.cs
- XmlSerializer.cs
- ProtectedProviderSettings.cs
- DefinitionBase.cs