Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / Animation / LinearQuaternionKeyFrame.cs / 1305600 / LinearQuaternionKeyFrame.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 to produce its output value. /// public partial class LinearQuaternionKeyFrame : QuaternionKeyFrame { ////// UseShortestPath Property /// public static readonly DependencyProperty UseShortestPathProperty = DependencyProperty.Register( "UseShortestPath", typeof(bool), typeof(LinearQuaternionKeyFrame), 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
- EntityModelSchemaGenerator.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- SHA512.cs
- SamlAssertionKeyIdentifierClause.cs
- SimpleApplicationHost.cs
- SqlPersonalizationProvider.cs
- URLAttribute.cs
- CapabilitiesPattern.cs
- OracleParameterCollection.cs
- Utilities.cs
- DataGridColumn.cs
- Assembly.cs
- GridLengthConverter.cs
- cookie.cs
- OdbcDataReader.cs
- NetworkInterface.cs
- Brushes.cs
- BeginSelectCardRequest.cs
- DesignerVerb.cs
- ChannelServices.cs
- PrintDialog.cs
- HtmlButton.cs
- PageSettings.cs
- MailAddressCollection.cs
- LinkTarget.cs
- DataKeyCollection.cs
- MemberAssignment.cs
- CompareInfo.cs
- SignedInfo.cs
- SQLInt64Storage.cs
- RequestCache.cs
- XPathDocument.cs
- ObjectAnimationUsingKeyFrames.cs
- SiteMapProvider.cs
- DelegateSerializationHolder.cs
- DataControlHelper.cs
- TreeNode.cs
- ClientTargetCollection.cs
- StorageComplexPropertyMapping.cs
- ArrangedElementCollection.cs
- ChangeTracker.cs
- SqlCacheDependencyDatabaseCollection.cs
- Single.cs
- EntitySetRetriever.cs
- RemotingException.cs
- IIS7WorkerRequest.cs
- ComboBoxItem.cs
- KerberosSecurityTokenProvider.cs
- TimeoutException.cs
- CollectionView.cs
- TextDecorationCollection.cs
- X509SecurityTokenProvider.cs
- MulticastIPAddressInformationCollection.cs
- WorkflowValidationFailedException.cs
- CaseStatement.cs
- WorkflowRuntimeServiceElement.cs
- TextParentUndoUnit.cs
- WebPartConnectVerb.cs
- WrappedKeySecurityToken.cs
- DummyDataSource.cs
- SuppressIldasmAttribute.cs
- TokenizerHelper.cs
- ThrowOnMultipleAssignment.cs
- XmlTextReaderImpl.cs
- TrackingAnnotationCollection.cs
- PostBackTrigger.cs
- ClientOptions.cs
- DesignerUtility.cs
- ListBoxItemWrapperAutomationPeer.cs
- CapabilitiesUse.cs
- NotifyIcon.cs
- IxmlLineInfo.cs
- XmlProcessingInstruction.cs
- InstanceDescriptor.cs
- BitmapCodecInfoInternal.cs
- WebServiceFaultDesigner.cs
- FixUp.cs
- PipelineComponent.cs
- WorkflowMarkupSerializationException.cs
- DetailsView.cs
- BitmapEffectGroup.cs
- InstancePersistenceEvent.cs
- DataRowView.cs
- Wizard.cs
- CodeTypeOfExpression.cs
- UnsafeNativeMethods.cs
- DockPattern.cs
- Cursor.cs
- TextBoxLine.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- PaperSize.cs
- XsdCachingReader.cs
- GroupLabel.cs
- ExpressionWriter.cs
- DebuggerAttributes.cs
- TransportChannelListener.cs
- RefreshEventArgs.cs
- EntityType.cs
- ConfigurationElement.cs
- ExpressionPrefixAttribute.cs