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
- ErrorLog.cs
- RoutedEventValueSerializer.cs
- WsiProfilesElement.cs
- CryptographicAttribute.cs
- SQLMembershipProvider.cs
- WinFormsUtils.cs
- _SecureChannel.cs
- PageEventArgs.cs
- DriveInfo.cs
- XmlMapping.cs
- TextPointerBase.cs
- SmiGettersStream.cs
- MetadataPropertyAttribute.cs
- XsdDateTime.cs
- initElementDictionary.cs
- ToolStripSeparator.cs
- _NativeSSPI.cs
- PositiveTimeSpanValidator.cs
- PackWebRequestFactory.cs
- HandlerFactoryCache.cs
- AsyncOperationManager.cs
- PasswordRecoveryAutoFormat.cs
- KeyFrames.cs
- InternalConfigHost.cs
- InputMethod.cs
- UndoUnit.cs
- HealthMonitoringSection.cs
- WinCategoryAttribute.cs
- WebPartChrome.cs
- StreamedWorkflowDefinitionContext.cs
- StatusBarItemAutomationPeer.cs
- TextParentUndoUnit.cs
- MultiByteCodec.cs
- XmlLanguage.cs
- MetabaseReader.cs
- KnowledgeBase.cs
- HttpUnhandledOperationInvoker.cs
- CellParaClient.cs
- VectorAnimationUsingKeyFrames.cs
- ConfigurationValues.cs
- RoutedCommand.cs
- RadioButton.cs
- Group.cs
- ScrollData.cs
- Activity.cs
- ScriptBehaviorDescriptor.cs
- WindowsToolbar.cs
- xmlformatgeneratorstatics.cs
- WorkerRequest.cs
- Size3DConverter.cs
- TrailingSpaceComparer.cs
- ThicknessAnimationBase.cs
- BitmapImage.cs
- RegexTree.cs
- TemplatedMailWebEventProvider.cs
- followingquery.cs
- NotEqual.cs
- SamlAuthenticationStatement.cs
- AsyncCompletedEventArgs.cs
- ElapsedEventArgs.cs
- WebPart.cs
- HttpValueCollection.cs
- DataControlFieldHeaderCell.cs
- RenderData.cs
- SoapMessage.cs
- FreezableCollection.cs
- COM2EnumConverter.cs
- PointValueSerializer.cs
- RadioButtonPopupAdapter.cs
- EUCJPEncoding.cs
- TabControl.cs
- BitmapEffectDrawingContextWalker.cs
- BlurEffect.cs
- ConsumerConnectionPointCollection.cs
- SystemKeyConverter.cs
- ScriptDescriptor.cs
- TreeNodeCollection.cs
- EventListener.cs
- WsatServiceCertificate.cs
- ObjectContext.cs
- PersistChildrenAttribute.cs
- UnionCodeGroup.cs
- Compilation.cs
- BinaryConverter.cs
- RedistVersionInfo.cs
- DrawingContextWalker.cs
- SvcMapFileLoader.cs
- ArgumentException.cs
- WebPartDisplayModeCollection.cs
- TargetFrameworkUtil.cs
- Monitor.cs
- DesignerActionList.cs
- ExpressionsCollectionConverter.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- SafeNativeMethods.cs
- Model3D.cs
- CustomErrorCollection.cs
- SQLStringStorage.cs
- Journaling.cs
- ServiceModelConfigurationSectionGroup.cs