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
- HttpCapabilitiesSectionHandler.cs
- RIPEMD160Managed.cs
- TerminatingOperationBehavior.cs
- MdiWindowListStrip.cs
- FragmentQueryProcessor.cs
- SecUtil.cs
- MaterialGroup.cs
- HttpPostedFile.cs
- PageCodeDomTreeGenerator.cs
- Scalars.cs
- PkcsUtils.cs
- BamlTreeNode.cs
- SecurityElementBase.cs
- ParserStreamGeometryContext.cs
- CommentAction.cs
- EdmRelationshipRoleAttribute.cs
- ApplicationCommands.cs
- DbConnectionStringBuilder.cs
- CursorConverter.cs
- RuntimeWrappedException.cs
- CodeTypeDeclaration.cs
- AssemblySettingAttributes.cs
- DefaultTextStore.cs
- SystemPens.cs
- Dispatcher.cs
- FileAuthorizationModule.cs
- DynamicField.cs
- SecurityKeyUsage.cs
- XdrBuilder.cs
- KeyTime.cs
- DrawingContextFlattener.cs
- DataRowCollection.cs
- OleStrCAMarshaler.cs
- ListViewCancelEventArgs.cs
- SpoolingTask.cs
- PerspectiveCamera.cs
- SqlServices.cs
- UnsafeNativeMethods.cs
- Or.cs
- DocumentXmlWriter.cs
- Rect.cs
- MachineKeyConverter.cs
- InputLangChangeRequestEvent.cs
- LocalBuilder.cs
- TargetConverter.cs
- ResourcesBuildProvider.cs
- DataServiceContext.cs
- EventPrivateKey.cs
- DataTemplateKey.cs
- CodeSnippetCompileUnit.cs
- AppliedDeviceFiltersEditor.cs
- ConfigurationPropertyCollection.cs
- Sql8ExpressionRewriter.cs
- StylusPointProperty.cs
- Soap12ProtocolImporter.cs
- FacetDescription.cs
- CallbackHandler.cs
- VerificationAttribute.cs
- DataSourceHelper.cs
- MediaPlayerState.cs
- ExpressionBuilder.cs
- XsltArgumentList.cs
- SocketException.cs
- ManipulationDelta.cs
- ImageField.cs
- DependentList.cs
- ObjectConverter.cs
- Run.cs
- EncoderBestFitFallback.cs
- UnaryNode.cs
- PriorityItem.cs
- ListViewGroupConverter.cs
- SelectionWordBreaker.cs
- EffectiveValueEntry.cs
- Fx.cs
- SHA1Managed.cs
- WebPartConnectionsConfigureVerb.cs
- DesignerActionGlyph.cs
- LiteralDesigner.cs
- SharedDp.cs
- TagNameToTypeMapper.cs
- ParameterToken.cs
- StatusBar.cs
- MinMaxParagraphWidth.cs
- nulltextcontainer.cs
- MediaElementAutomationPeer.cs
- XPathNodeHelper.cs
- HttpChannelHelper.cs
- TableItemProviderWrapper.cs
- WindowsMenu.cs
- Hash.cs
- ScrollData.cs
- ConfigXmlText.cs
- BitSet.cs
- Int16Converter.cs
- AnimationStorage.cs
- NetworkInformationPermission.cs
- TemplateKey.cs
- StackOverflowException.cs
- DataControlButton.cs