Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / Animation / LinearQuaternionKeyFrame.cs / 1 / 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
- DefaultExpressionVisitor.cs
- XmlSchemaAnnotated.cs
- IssuedTokensHeader.cs
- _RequestCacheProtocol.cs
- pingexception.cs
- ConfigXmlDocument.cs
- ServiceControllerDesigner.cs
- TagNameToTypeMapper.cs
- SmtpReplyReaderFactory.cs
- RegexEditorDialog.cs
- ToolStripArrowRenderEventArgs.cs
- GPStream.cs
- SqlDataRecord.cs
- SecurityCriticalDataForSet.cs
- ChildrenQuery.cs
- PropertyConverter.cs
- PasswordPropertyTextAttribute.cs
- CompareValidator.cs
- Visual3D.cs
- ListViewContainer.cs
- DesignerSerializerAttribute.cs
- Tokenizer.cs
- MobileDeviceCapabilitiesSectionHandler.cs
- CompilationUtil.cs
- MultiDataTrigger.cs
- Italic.cs
- AuthenticatingEventArgs.cs
- ReflectTypeDescriptionProvider.cs
- UnmanagedMemoryStreamWrapper.cs
- MessageEnumerator.cs
- ModuleElement.cs
- CodeExpressionCollection.cs
- SoapHeaderException.cs
- HttpHeaderCollection.cs
- XmlSerializer.cs
- GregorianCalendarHelper.cs
- PermissionSetTriple.cs
- ProfilePropertySettings.cs
- WorkflowPersistenceService.cs
- DataServiceExpressionVisitor.cs
- RowCache.cs
- ObjectStorage.cs
- XmlSchemaAttribute.cs
- _BaseOverlappedAsyncResult.cs
- ActivityBuilder.cs
- PropertyTabAttribute.cs
- ProviderException.cs
- DocumentCollection.cs
- HashCodeCombiner.cs
- InputMethodStateTypeInfo.cs
- LinkConverter.cs
- XmlSchemaSimpleTypeUnion.cs
- WebServicesSection.cs
- TableLayoutCellPaintEventArgs.cs
- StandardMenuStripVerb.cs
- MsmqIntegrationBinding.cs
- SafeArrayRankMismatchException.cs
- TextBoxDesigner.cs
- WebEventTraceProvider.cs
- RelatedPropertyManager.cs
- UInt64Converter.cs
- ReservationNotFoundException.cs
- HostProtectionException.cs
- TreeNodeSelectionProcessor.cs
- DesignerLoader.cs
- TextBoxLine.cs
- SecureEnvironment.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- OpenTypeCommon.cs
- base64Transforms.cs
- DataGridViewSortCompareEventArgs.cs
- MulticastOption.cs
- HostProtectionException.cs
- SafePointer.cs
- DecimalKeyFrameCollection.cs
- MembershipUser.cs
- PersonalizationAdministration.cs
- TimeSpan.cs
- Vector3DAnimation.cs
- NavigationWindowAutomationPeer.cs
- DataSourceDesigner.cs
- WebControl.cs
- SoapCodeExporter.cs
- XmlCodeExporter.cs
- ThemeDictionaryExtension.cs
- AttributeSetAction.cs
- SmiContextFactory.cs
- XmlMemberMapping.cs
- FileLogRecordStream.cs
- bidPrivateBase.cs
- ToolboxDataAttribute.cs
- Trace.cs
- Trigger.cs
- CustomLineCap.cs
- HttpCacheVaryByContentEncodings.cs
- FormattedText.cs
- CannotUnloadAppDomainException.cs
- Exceptions.cs
- SqlRetyper.cs
- WebPartZoneBase.cs