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
- Expression.cs
- DataChangedEventManager.cs
- ByteStack.cs
- BeginStoryboard.cs
- StorageEndPropertyMapping.cs
- XmlAttributeCache.cs
- DataServiceBehavior.cs
- EncodingTable.cs
- MediaPlayerState.cs
- ActivityDesigner.cs
- ExecutionScope.cs
- DataComponentMethodGenerator.cs
- BaseTemplateCodeDomTreeGenerator.cs
- RowUpdatingEventArgs.cs
- SizeKeyFrameCollection.cs
- COM2ExtendedBrowsingHandler.cs
- ByeMessageCD1.cs
- ToolStripOverflowButton.cs
- LingerOption.cs
- SslStreamSecurityElement.cs
- ValidationEventArgs.cs
- InternalConfirm.cs
- DbProviderFactory.cs
- StreamReader.cs
- PathParser.cs
- DictionarySectionHandler.cs
- DescendantOverDescendantQuery.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- DatePickerTextBox.cs
- DoubleStorage.cs
- TemplateField.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- WindowsGraphics2.cs
- HttpConfigurationSystem.cs
- SqlNodeTypeOperators.cs
- WindowsScroll.cs
- COM2ComponentEditor.cs
- DataMemberFieldEditor.cs
- InfiniteTimeSpanConverter.cs
- VerticalAlignConverter.cs
- DbCommandTree.cs
- HttpRawResponse.cs
- ProviderException.cs
- tabpagecollectioneditor.cs
- GroupBoxRenderer.cs
- _Connection.cs
- XamlInt32CollectionSerializer.cs
- Point3DCollectionValueSerializer.cs
- FunctionDescription.cs
- Object.cs
- ComplexObject.cs
- EllipticalNodeOperations.cs
- CommandExpr.cs
- DataViewListener.cs
- UnsafeNativeMethods.cs
- XmlSchemaAttribute.cs
- UDPClient.cs
- ItemContainerProviderWrapper.cs
- JobCollate.cs
- DataRecordInternal.cs
- SendKeys.cs
- ACL.cs
- KeyedHashAlgorithm.cs
- SqlDataRecord.cs
- QilXmlReader.cs
- QueueProcessor.cs
- DataControlFieldCell.cs
- MsmqReceiveParameters.cs
- XmlSchemaInclude.cs
- EditorZoneBase.cs
- WebResourceUtil.cs
- IODescriptionAttribute.cs
- JsonGlobals.cs
- FeatureSupport.cs
- BrowserCapabilitiesFactory.cs
- Blend.cs
- SigningProgress.cs
- TextCharacters.cs
- EntityParameter.cs
- PointConverter.cs
- DependentTransaction.cs
- CharAnimationUsingKeyFrames.cs
- ActivationServices.cs
- DataGridViewTopRowAccessibleObject.cs
- DefaultAutoFieldGenerator.cs
- OSFeature.cs
- ResourceDictionaryCollection.cs
- HashMembershipCondition.cs
- CalendarKeyboardHelper.cs
- ExpressionBuilder.cs
- WebReferencesBuildProvider.cs
- ViewCellRelation.cs
- FlowNode.cs
- DrawingContext.cs
- MethodToken.cs
- TaiwanLunisolarCalendar.cs
- DrawingDrawingContext.cs
- SafeBitVector32.cs
- HttpModuleActionCollection.cs
- ExecutionContext.cs