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
- DesignerCategoryAttribute.cs
- FloaterParagraph.cs
- XmlCountingReader.cs
- PreviewPrintController.cs
- ProfileParameter.cs
- ToolStripDropDownMenu.cs
- ToggleButton.cs
- ContentPlaceHolder.cs
- RoutedEventArgs.cs
- listitem.cs
- MetadataArtifactLoaderCompositeResource.cs
- NumberFormatInfo.cs
- OuterGlowBitmapEffect.cs
- FileChangesMonitor.cs
- HttpCachePolicy.cs
- ChangeInterceptorAttribute.cs
- SelectionWordBreaker.cs
- WebPartConnectionCollection.cs
- PersonalizationState.cs
- PathSegmentCollection.cs
- CodeNamespaceImport.cs
- RegistryConfigurationProvider.cs
- TracingConnection.cs
- BulletDecorator.cs
- RowUpdatedEventArgs.cs
- WebPartVerbCollection.cs
- DataGridViewButtonColumn.cs
- DataViewSetting.cs
- GuidelineCollection.cs
- HandlerFactoryCache.cs
- MouseEventArgs.cs
- MouseActionValueSerializer.cs
- CodePageEncoding.cs
- itemelement.cs
- IConvertible.cs
- QueryContinueDragEventArgs.cs
- XmlCodeExporter.cs
- Single.cs
- TargetInvocationException.cs
- AmbientProperties.cs
- EditCommandColumn.cs
- WbmpConverter.cs
- SrgsRuleRef.cs
- ProxyDataContractResolver.cs
- RectangleGeometry.cs
- List.cs
- XsltException.cs
- DomainUpDown.cs
- BezierSegment.cs
- ArraySubsetEnumerator.cs
- Util.cs
- State.cs
- MethodImplAttribute.cs
- _FtpControlStream.cs
- HostedHttpTransportManager.cs
- SecurityStandardsManager.cs
- InputElement.cs
- ZipIOModeEnforcingStream.cs
- MemoryFailPoint.cs
- ValidatorCompatibilityHelper.cs
- ISFTagAndGuidCache.cs
- ScanQueryOperator.cs
- TdsParserSessionPool.cs
- RecognizedAudio.cs
- StrokeNodeOperations.cs
- WasEndpointConfigContainer.cs
- CacheDependency.cs
- GeometryDrawing.cs
- EventLogPermission.cs
- DesignerOptionService.cs
- ColorDialog.cs
- FormClosingEvent.cs
- SByte.cs
- EntityDataSourceEntityTypeFilterConverter.cs
- FlowDocumentView.cs
- TreeView.cs
- TextProperties.cs
- ConnectionStringsExpressionBuilder.cs
- DataServiceRequest.cs
- AttachedPropertyDescriptor.cs
- HttpCookie.cs
- LazyInitializer.cs
- CredentialManagerDialog.cs
- DynamicActivityProperty.cs
- CardSpaceSelector.cs
- Odbc32.cs
- DataBindingCollectionEditor.cs
- ResourceSetExpression.cs
- SafeNativeMethods.cs
- WorkflowInstanceUnhandledExceptionRecord.cs
- BufferedStream.cs
- OleDbMetaDataFactory.cs
- TypeUtils.cs
- CaseInsensitiveComparer.cs
- PropertyTabAttribute.cs
- MarkedHighlightComponent.cs
- EncodingNLS.cs
- WebSysDefaultValueAttribute.cs
- ConfigUtil.cs
- ToolStripRenderer.cs