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
- SizeAnimationBase.cs
- View.cs
- DisplayMemberTemplateSelector.cs
- SiteMapPath.cs
- ActivityCodeDomSerializer.cs
- EventLogHandle.cs
- UnitControl.cs
- ErrorStyle.cs
- Pair.cs
- ProcessProtocolHandler.cs
- CodeThrowExceptionStatement.cs
- BatchWriter.cs
- HTMLTagNameToTypeMapper.cs
- MatrixUtil.cs
- XmlSecureResolver.cs
- CapiHashAlgorithm.cs
- EntityType.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- EventLogPermission.cs
- RequestUriProcessor.cs
- ProtocolImporter.cs
- MsmqTransportElement.cs
- ASCIIEncoding.cs
- HttpConfigurationContext.cs
- WindowsComboBox.cs
- BoundColumn.cs
- FaultDesigner.cs
- Ipv6Element.cs
- XmlSchemaImporter.cs
- DoubleConverter.cs
- XmlSchemaGroupRef.cs
- XmlSchemaSearchPattern.cs
- tooltip.cs
- FileDialogPermission.cs
- DataTableReader.cs
- OrderPreservingSpoolingTask.cs
- InputElement.cs
- XmlIlGenerator.cs
- FlowLayout.cs
- ProfileGroupSettingsCollection.cs
- DefaultValueConverter.cs
- EntryPointNotFoundException.cs
- TemplateBindingExpression.cs
- InvokeAction.cs
- MoveSizeWinEventHandler.cs
- EventLogReader.cs
- DTCTransactionManager.cs
- MapPathBasedVirtualPathProvider.cs
- TextSpan.cs
- DataContractJsonSerializer.cs
- ColorConverter.cs
- ColumnMapTranslator.cs
- loginstatus.cs
- XmlSchemaSimpleTypeList.cs
- SqlClientWrapperSmiStreamChars.cs
- XmlUtil.cs
- AuthorizationSection.cs
- TitleStyle.cs
- PersonalizableAttribute.cs
- DockingAttribute.cs
- CriticalFinalizerObject.cs
- DataGridViewCheckBoxColumn.cs
- GeneralTransform3DCollection.cs
- AvtEvent.cs
- QilXmlReader.cs
- CompilerParameters.cs
- EventLogPermissionAttribute.cs
- ObjectQueryState.cs
- InstancePersistenceContext.cs
- MultipleViewProviderWrapper.cs
- XmlReflectionMember.cs
- MessageSecurityVersion.cs
- FixedSOMGroup.cs
- BitStack.cs
- AssemblySettingAttributes.cs
- Matrix3D.cs
- FormViewDeleteEventArgs.cs
- ScriptingRoleServiceSection.cs
- TraceFilter.cs
- CheckBoxRenderer.cs
- GradientSpreadMethodValidation.cs
- DBCommandBuilder.cs
- RowToParametersTransformer.cs
- WebContext.cs
- Wildcard.cs
- SiteMapHierarchicalDataSourceView.cs
- GridLength.cs
- DesignBindingPropertyDescriptor.cs
- WebPartCatalogCloseVerb.cs
- ElementMarkupObject.cs
- ILGenerator.cs
- HostedTransportConfigurationManager.cs
- Triplet.cs
- Message.cs
- ListViewInsertedEventArgs.cs
- UIElement3D.cs
- entityreference_tresulttype.cs
- RoutingExtensionElement.cs
- ToolStripHighContrastRenderer.cs
- CollectionChangedEventManager.cs