Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / Animation / SplineQuaternionKeyFrame.cs / 1305600 / 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
- InheritanceContextChangedEventManager.cs
- IERequestCache.cs
- ImageDrawing.cs
- ParameterReplacerVisitor.cs
- ColorDialog.cs
- XPathMessageFilterElementComparer.cs
- KeyboardEventArgs.cs
- LicenseManager.cs
- Content.cs
- FullTextState.cs
- ToolStripManager.cs
- WebServiceHost.cs
- Journaling.cs
- UserControl.cs
- EtwTrackingParticipant.cs
- DataProviderNameConverter.cs
- ConfigurationConverterBase.cs
- TrackingStringDictionary.cs
- PKCS1MaskGenerationMethod.cs
- SimpleApplicationHost.cs
- CopyNodeSetAction.cs
- lengthconverter.cs
- LocationUpdates.cs
- dbdatarecord.cs
- ScriptManagerProxy.cs
- FormattedText.cs
- XmlTypeAttribute.cs
- nulltextcontainer.cs
- TraceUtility.cs
- Timer.cs
- _LocalDataStore.cs
- Renderer.cs
- CultureSpecificStringDictionary.cs
- CriticalFinalizerObject.cs
- TimeIntervalCollection.cs
- AccessibilityHelperForXpWin2k3.cs
- JsonWriterDelegator.cs
- Compress.cs
- IntellisenseTextBox.designer.cs
- TreeViewImageKeyConverter.cs
- ExtractorMetadata.cs
- MessageSmuggler.cs
- DllNotFoundException.cs
- EqualityArray.cs
- InlineObject.cs
- SimpleApplicationHost.cs
- DatatypeImplementation.cs
- DependencyPropertyDescriptor.cs
- PerformanceCountersElement.cs
- DiffuseMaterial.cs
- DocumentReferenceCollection.cs
- GenericAuthenticationEventArgs.cs
- Currency.cs
- CompiledQueryCacheKey.cs
- ChildChangedEventArgs.cs
- CacheDependency.cs
- XmlIncludeAttribute.cs
- ExtensibleClassFactory.cs
- InitializingNewItemEventArgs.cs
- ToolStripDropTargetManager.cs
- PropertySourceInfo.cs
- XmlSchemaSimpleTypeRestriction.cs
- SuspendDesigner.cs
- DesignerProperties.cs
- CodeSnippetCompileUnit.cs
- DynamicPropertyHolder.cs
- ServiceChannelManager.cs
- SignatureDescription.cs
- SpeechSeg.cs
- OperationPickerDialog.designer.cs
- CheckBoxDesigner.cs
- SoapAttributeAttribute.cs
- Point4D.cs
- ExpressionPrefixAttribute.cs
- PointValueSerializer.cs
- HttpApplication.cs
- ProfilePropertyMetadata.cs
- ExpanderAutomationPeer.cs
- ConnectionPoolManager.cs
- CommandField.cs
- ProcessModelSection.cs
- objectquery_tresulttype.cs
- SqlErrorCollection.cs
- OptimalBreakSession.cs
- HtmlInputText.cs
- MembershipAdapter.cs
- SoapFormatterSinks.cs
- TextLineResult.cs
- SecurityCriticalDataForSet.cs
- RedirectionProxy.cs
- ServerValidateEventArgs.cs
- MethodImplAttribute.cs
- FormViewDeleteEventArgs.cs
- DataServiceQuery.cs
- FixedDSBuilder.cs
- _DigestClient.cs
- AutomationEvent.cs
- ClientScriptManagerWrapper.cs
- ReadOnlyMetadataCollection.cs
- TemplateXamlTreeBuilder.cs