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
- MultiBinding.cs
- RelationshipSet.cs
- SerializationFieldInfo.cs
- ClientSponsor.cs
- GeometryDrawing.cs
- WpfPayload.cs
- RootBrowserWindowAutomationPeer.cs
- TemplateXamlParser.cs
- Clock.cs
- TraceFilter.cs
- HitTestFilterBehavior.cs
- WinInetCache.cs
- EntityDesignerDataSourceView.cs
- VectorValueSerializer.cs
- Invariant.cs
- PageVisual.cs
- PolyBezierSegmentFigureLogic.cs
- HostedElements.cs
- StringBuilder.cs
- UnsafeNativeMethods.cs
- XmlILModule.cs
- ListViewCommandEventArgs.cs
- WebServiceClientProxyGenerator.cs
- XsltArgumentList.cs
- _NestedSingleAsyncResult.cs
- TextTreeTextElementNode.cs
- Exceptions.cs
- ControlAdapter.cs
- RecordConverter.cs
- PTUtility.cs
- AxParameterData.cs
- ProbeMatchesMessage11.cs
- SqlMethodTransformer.cs
- CssStyleCollection.cs
- DotExpr.cs
- TakeQueryOptionExpression.cs
- SizeConverter.cs
- CopyAction.cs
- LinkLabel.cs
- PageParserFilter.cs
- WsdlImporter.cs
- ToolStripGripRenderEventArgs.cs
- IdleTimeoutMonitor.cs
- GridEntryCollection.cs
- SecurityImpersonationBehavior.cs
- NextPreviousPagerField.cs
- DES.cs
- MobileTextWriter.cs
- DBBindings.cs
- InputBuffer.cs
- DefaultProxySection.cs
- CompositeActivityCodeGenerator.cs
- RadioButton.cs
- EventLogTraceListener.cs
- COM2FontConverter.cs
- FileDialog.cs
- Validator.cs
- ScrollChrome.cs
- QilFactory.cs
- BaseTreeIterator.cs
- SQLString.cs
- securitycriticaldataClass.cs
- CompilerGlobalScopeAttribute.cs
- SplitContainer.cs
- SqlOuterApplyReducer.cs
- Attachment.cs
- EditingCommands.cs
- CoreChannel.cs
- GradientStopCollection.cs
- CheckBox.cs
- AssertFilter.cs
- EmptyCollection.cs
- Vertex.cs
- ComplexBindingPropertiesAttribute.cs
- DetailsViewCommandEventArgs.cs
- ToolStripDropDownItem.cs
- PassportAuthenticationEventArgs.cs
- DataControlCommands.cs
- SmtpNegotiateAuthenticationModule.cs
- ToolStripSettings.cs
- KeyInterop.cs
- RegexWriter.cs
- StorageComplexPropertyMapping.cs
- XmlDesigner.cs
- BookmarkScope.cs
- DataGridCell.cs
- DbConnectionPoolGroupProviderInfo.cs
- DSASignatureDeformatter.cs
- ToolStripRenderEventArgs.cs
- HostingEnvironment.cs
- AspProxy.cs
- IBuiltInEvidence.cs
- SqlCommandBuilder.cs
- CheckBoxRenderer.cs
- Int64Storage.cs
- Substitution.cs
- _CommandStream.cs
- PreviewPrintController.cs
- OperationInvokerTrace.cs
- HMACSHA256.cs