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
- FrameworkRichTextComposition.cs
- DataGridViewSelectedColumnCollection.cs
- ToolStripItemCollection.cs
- AmbientLight.cs
- URIFormatException.cs
- ExecutionEngineException.cs
- DataListCommandEventArgs.cs
- WindowsAuthenticationEventArgs.cs
- FromRequest.cs
- AppDomainResourcePerfCounters.cs
- UshortList2.cs
- TextContainer.cs
- WindowsSlider.cs
- WindowsHyperlink.cs
- XmlSerializer.cs
- BaseTreeIterator.cs
- AuthenticationManager.cs
- DynamicDataRoute.cs
- ApplicationServiceManager.cs
- CatalogPart.cs
- PrefixHandle.cs
- WriterOutput.cs
- ExpressionBuilder.cs
- LinqDataSourceContextEventArgs.cs
- SecurityTokenSerializer.cs
- OleAutBinder.cs
- HandleTable.cs
- InvokePattern.cs
- PersonalizableTypeEntry.cs
- SharedDp.cs
- OdbcReferenceCollection.cs
- AuthenticateEventArgs.cs
- CqlParserHelpers.cs
- SafeBitVector32.cs
- ArrayHelper.cs
- StatusBarDrawItemEvent.cs
- EntityDataReader.cs
- SubMenuStyle.cs
- DeobfuscatingStream.cs
- ExternalFile.cs
- ChangeNode.cs
- PrintSystemException.cs
- SQLDoubleStorage.cs
- UpdatePanelControlTrigger.cs
- MultiBinding.cs
- Point4D.cs
- DataSourceControl.cs
- MultiView.cs
- XmlBufferReader.cs
- DataSourceControl.cs
- HttpCookiesSection.cs
- ToolStripSplitStackLayout.cs
- QueryIntervalOp.cs
- MessageQueueCriteria.cs
- EventRouteFactory.cs
- BitArray.cs
- ModelUIElement3D.cs
- ConnectionPointConverter.cs
- TranslateTransform.cs
- OleAutBinder.cs
- RootProfilePropertySettingsCollection.cs
- ProviderIncompatibleException.cs
- CompensationParticipant.cs
- JsonDeserializer.cs
- HttpRequest.cs
- MouseCaptureWithinProperty.cs
- AdornerLayer.cs
- IsolatedStorage.cs
- BlobPersonalizationState.cs
- ContentFileHelper.cs
- OleDbPropertySetGuid.cs
- _LazyAsyncResult.cs
- RegexTree.cs
- XmlEventCache.cs
- ZipIOCentralDirectoryBlock.cs
- ItemsPanelTemplate.cs
- XmlNodeChangedEventManager.cs
- InkPresenter.cs
- Literal.cs
- SiteMapPath.cs
- CombinedHttpChannel.cs
- messageonlyhwndwrapper.cs
- StateWorkerRequest.cs
- ServicePointManagerElement.cs
- RegexInterpreter.cs
- OpCopier.cs
- DateTimeParse.cs
- DataService.cs
- ListViewGroupItemCollection.cs
- WindowsAuthenticationModule.cs
- SafeCryptoHandles.cs
- BmpBitmapEncoder.cs
- ProcessRequestArgs.cs
- UIElement3D.cs
- TypeDescriptor.cs
- Message.cs
- CommandCollectionEditor.cs
- FixedTextBuilder.cs
- SqlUDTStorage.cs
- ColorPalette.cs