Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / Animation / SplineQuaternionKeyFrame.cs / 1 / SplineQuaternionKeyFrame.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 SplineQuaternionKeyFrame : QuaternionKeyFrame { ////// UseShortestPath Property /// public static readonly DependencyProperty UseShortestPathProperty = DependencyProperty.Register( "UseShortestPath", typeof(bool), typeof(SplineQuaternionKeyFrame), 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
- TabletDeviceInfo.cs
- ContextBase.cs
- CaseDesigner.xaml.cs
- DiagnosticTraceSchemas.cs
- TcpChannelHelper.cs
- UnicastIPAddressInformationCollection.cs
- XmlSchemaChoice.cs
- UndoManager.cs
- ColumnClickEvent.cs
- DataGridBeginningEditEventArgs.cs
- ConfigurationLocation.cs
- PhysicalOps.cs
- RSAPKCS1SignatureFormatter.cs
- IsolatedStorageFile.cs
- KerberosSecurityTokenProvider.cs
- NonVisualControlAttribute.cs
- AuthenticationModulesSection.cs
- ProfilePropertyMetadata.cs
- BrowserCapabilitiesFactory.cs
- SqlTriggerAttribute.cs
- CompilationUtil.cs
- XmlLoader.cs
- WSTransactionSection.cs
- PieceNameHelper.cs
- ReadOnlyDataSourceView.cs
- HandoffBehavior.cs
- KeyGestureConverter.cs
- SqlFileStream.cs
- FullTrustAssembliesSection.cs
- ReflectionHelper.cs
- Accessible.cs
- AuthenticationException.cs
- JumpList.cs
- LocalizableAttribute.cs
- cache.cs
- FontFaceLayoutInfo.cs
- ServiceMetadataPublishingElement.cs
- oledbconnectionstring.cs
- KeyValuePairs.cs
- LexicalChunk.cs
- ToolboxItemCollection.cs
- DoWhileDesigner.xaml.cs
- DbConnectionOptions.cs
- VisualBasicHelper.cs
- ConcurrentStack.cs
- SequentialOutput.cs
- RSAOAEPKeyExchangeFormatter.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- EngineSiteSapi.cs
- ConfigurationPropertyCollection.cs
- ContainerActivationHelper.cs
- AuthenticateEventArgs.cs
- ColumnWidthChangingEvent.cs
- X509Certificate2Collection.cs
- WebBrowserContainer.cs
- RoleGroupCollection.cs
- DataConnectionHelper.cs
- ClientCultureInfo.cs
- EntitySetDataBindingList.cs
- XDRSchema.cs
- ThreadPool.cs
- EnterpriseServicesHelper.cs
- ClassData.cs
- SafeNativeMethods.cs
- WebContext.cs
- EntityDataSourceEntityTypeFilterItem.cs
- WindowsScrollBarBits.cs
- UpdateRecord.cs
- RotationValidation.cs
- DirectoryNotFoundException.cs
- DataGridViewCellLinkedList.cs
- CodeCastExpression.cs
- OdbcHandle.cs
- PersistenceProviderDirectory.cs
- ManualResetEvent.cs
- NetCodeGroup.cs
- LocalizationParserHooks.cs
- BrowserDefinition.cs
- PointAnimationUsingPath.cs
- CompositeDuplexBindingElement.cs
- AliasGenerator.cs
- FloaterBaseParagraph.cs
- ClientScriptManager.cs
- CodeCatchClause.cs
- ProfileSection.cs
- SelectionItemPattern.cs
- PointConverter.cs
- ContextStack.cs
- DataViewSettingCollection.cs
- RegexGroupCollection.cs
- DetailsViewUpdatedEventArgs.cs
- SoapWriter.cs
- SocketAddress.cs
- DPCustomTypeDescriptor.cs
- RemotingConfigParser.cs
- relpropertyhelper.cs
- PixelFormatConverter.cs
- MouseOverProperty.cs
- NullToBooleanConverter.cs
- LookupBindingPropertiesAttribute.cs