Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / Animation / LinearQuaternionKeyFrame.cs / 1 / 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
- ParseNumbers.cs
- ActiveXMessageFormatter.cs
- DesignDataSource.cs
- Rotation3DAnimationBase.cs
- ToolboxItem.cs
- SoapException.cs
- PointCollection.cs
- UserControlBuildProvider.cs
- Expression.cs
- SiteMapProvider.cs
- FrameworkContentElement.cs
- ContentIterators.cs
- SafeEventLogReadHandle.cs
- AuthenticationException.cs
- DesignerActionService.cs
- TextContainerHelper.cs
- DocumentApplicationJournalEntry.cs
- SolidBrush.cs
- Collection.cs
- ThreadSafeList.cs
- OdbcEnvironmentHandle.cs
- IsolatedStorage.cs
- ApplicationFileParser.cs
- XmlNavigatorStack.cs
- HttpListenerRequest.cs
- PasswordPropertyTextAttribute.cs
- RSACryptoServiceProvider.cs
- IIS7UserPrincipal.cs
- ControlValuePropertyAttribute.cs
- SafeRightsManagementQueryHandle.cs
- Pair.cs
- FacetDescriptionElement.cs
- InkCanvasAutomationPeer.cs
- RtfToXamlLexer.cs
- shaperfactoryquerycacheentry.cs
- IApplicationTrustManager.cs
- SpecialFolderEnumConverter.cs
- CqlIdentifiers.cs
- ObservableDictionary.cs
- WebPartUtil.cs
- UniqueIdentifierService.cs
- DataGridPageChangedEventArgs.cs
- UrlAuthorizationModule.cs
- TextEditorContextMenu.cs
- ServicePoint.cs
- TextWriterTraceListener.cs
- CompressEmulationStream.cs
- SafeTimerHandle.cs
- SeverityFilter.cs
- RuntimeCompatibilityAttribute.cs
- TagPrefixAttribute.cs
- BCLDebug.cs
- XmlAttributeHolder.cs
- RuntimeEnvironment.cs
- NullRuntimeConfig.cs
- CustomTypeDescriptor.cs
- ResourcesChangeInfo.cs
- EntityType.cs
- StructuredTypeEmitter.cs
- HotSpotCollection.cs
- SqlBulkCopyColumnMapping.cs
- InProcStateClientManager.cs
- RangeContentEnumerator.cs
- BrowserCapabilitiesCodeGenerator.cs
- FrugalMap.cs
- EntityDataSourceContainerNameItem.cs
- CompatibleIComparer.cs
- IisTraceListener.cs
- SapiAttributeParser.cs
- CollectionBase.cs
- DbParameterCollectionHelper.cs
- ForEach.cs
- TypeRefElement.cs
- DES.cs
- AutoGeneratedField.cs
- AmbientValueAttribute.cs
- Vector3DValueSerializer.cs
- FeatureSupport.cs
- WebBrowserPermission.cs
- ToolStripStatusLabel.cs
- DataGridViewAutoSizeModeEventArgs.cs
- MDIControlStrip.cs
- StorageInfo.cs
- mil_commands.cs
- OleDbEnumerator.cs
- UpdateCompiler.cs
- XomlDesignerLoader.cs
- ActivationWorker.cs
- Cursor.cs
- DateTimeParse.cs
- Cloud.cs
- TwoPhaseCommit.cs
- InitializerFacet.cs
- MenuAutomationPeer.cs
- DrawingBrush.cs
- ConfigLoader.cs
- TextParagraphProperties.cs
- DataComponentMethodGenerator.cs
- StringPropertyBuilder.cs
- EventToken.cs