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
- SourceFilter.cs
- DrawingVisualDrawingContext.cs
- XmlText.cs
- DetailsViewPageEventArgs.cs
- WindowsTokenRoleProvider.cs
- PathFigureCollectionValueSerializer.cs
- DBNull.cs
- BroadcastEventHelper.cs
- StylusCollection.cs
- IpcManager.cs
- ArcSegment.cs
- MouseGestureConverter.cs
- NextPreviousPagerField.cs
- TemplateControlBuildProvider.cs
- DynamicMethod.cs
- coordinator.cs
- Positioning.cs
- CustomExpression.cs
- BamlLocalizableResourceKey.cs
- SqlConnection.cs
- X509SubjectKeyIdentifierClause.cs
- RenderData.cs
- EventBuilder.cs
- KeyValueSerializer.cs
- DelegateHelpers.Generated.cs
- DataGridViewRowCollection.cs
- HasCopySemanticsAttribute.cs
- WmlCalendarAdapter.cs
- MSAANativeProvider.cs
- ButtonFlatAdapter.cs
- QuotedPairReader.cs
- precedingquery.cs
- ErrorsHelper.cs
- SqlDataSourceFilteringEventArgs.cs
- Process.cs
- MatrixKeyFrameCollection.cs
- WebPartConnectionsCancelVerb.cs
- IntSecurity.cs
- BaseContextMenu.cs
- FormsAuthenticationConfiguration.cs
- NativeMethods.cs
- GroupBoxRenderer.cs
- TogglePatternIdentifiers.cs
- securestring.cs
- DetailsViewModeEventArgs.cs
- KeyTimeConverter.cs
- DataSysAttribute.cs
- datacache.cs
- IdnElement.cs
- Point3DCollection.cs
- OneWayChannelListener.cs
- TimeoutValidationAttribute.cs
- XmlQueryCardinality.cs
- FontSizeConverter.cs
- DelegateHelpers.cs
- DropTarget.cs
- SemanticValue.cs
- MemberMaps.cs
- DeferredReference.cs
- DictionarySectionHandler.cs
- NegotiateStream.cs
- DataServiceSaveChangesEventArgs.cs
- ValueExpressions.cs
- XmlTypeMapping.cs
- XmlILAnnotation.cs
- SByte.cs
- WCFModelStrings.Designer.cs
- IncrementalCompileAnalyzer.cs
- MobileComponentEditorPage.cs
- SQLGuidStorage.cs
- XamlTypeMapper.cs
- SecurityContext.cs
- BitmapEffectInput.cs
- SendingRequestEventArgs.cs
- AlternateView.cs
- WindowsGraphicsCacheManager.cs
- HtmlTextArea.cs
- DataBindingCollectionEditor.cs
- ListBindingHelper.cs
- BlurEffect.cs
- WebPartHeaderCloseVerb.cs
- PageAsyncTask.cs
- Accessible.cs
- InstanceLockException.cs
- MSHTMLHost.cs
- AmbiguousMatchException.cs
- ToolZone.cs
- InvalidPropValue.cs
- UserControl.cs
- ComponentManagerBroker.cs
- SslSecurityTokenParameters.cs
- FixedSOMElement.cs
- EdmItemError.cs
- StateWorkerRequest.cs
- DataRowView.cs
- GradientBrush.cs
- CounterCreationData.cs
- SafeBitVector32.cs
- ThicknessConverter.cs
- Visual3D.cs