Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media3D / AxisAngleRotation3D.cs / 1 / AxisAngleRotation3D.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // //--------------------------------------------------------------------------- using System; using MS.Internal; namespace System.Windows.Media.Media3D { ////// A rotation in 3-space defined by an axis and an angle to rotate about that axis. /// public partial class AxisAngleRotation3D { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors ////// Default constructor that creates a rotation with Axis (0,1,0) and Angle of 0. /// public AxisAngleRotation3D() {} ////// Constructor taking axis and angle. /// public AxisAngleRotation3D(Vector3D axis, double angle) { Axis = axis; Angle = angle; } #endregion Constructors //------------------------------------------------------ // // Public Methods // //----------------------------------------------------- //------------------------------------------------------ // // Public Properties // //------------------------------------------------------ //----------------------------------------------------- // // Public Events // //------------------------------------------------------ //----------------------------------------------------- // // Internal Properties // //----------------------------------------------------- #region Internal Properties // Used by animation to get a snapshot of the current rotational // configuration for interpolation in Rotation3DAnimations. internal override Quaternion InternalQuaternion { get { if (_cachedQuaternionValue == c_dirtyQuaternion) { Vector3D axis = Axis; // Quaternion's axis/angle ctor throws if the axis has zero length. // // This threshold needs to match the one we used in D3DXVec3Normalize (d3dxmath9.cpp) // and in unmanaged code. See also AxisAngleRotation3D.cpp. if (axis.LengthSquared > DoubleUtil.FLT_MIN) { _cachedQuaternionValue = new Quaternion(axis, Angle); } else { // If we have a zero-length axis we return identity (i.e., // we consider this to be no rotation.) _cachedQuaternionValue = Quaternion.Identity; } } return _cachedQuaternionValue; } } #endregion Internal Properties internal void AxisPropertyChangedHook(DependencyPropertyChangedEventArgs e) { _cachedQuaternionValue = c_dirtyQuaternion; } internal void AnglePropertyChangedHook(DependencyPropertyChangedEventArgs e) { _cachedQuaternionValue = c_dirtyQuaternion; } //----------------------------------------------------- // // Private Fields // //------------------------------------------------------ private Quaternion _cachedQuaternionValue = c_dirtyQuaternion; // Arbitrary quaternion that will signify that our cached quat is dirty // Reasonable quaternions are normalized so it's very unlikely that this // will ever occurr in a normal application. internal static readonly Quaternion c_dirtyQuaternion = new Quaternion( Math.E, Math.PI, Math.E * Math.PI, 55.0 ); } } // 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
- XmlILConstructAnalyzer.cs
- StructuredProperty.cs
- FontFamily.cs
- DataGridColumnCollection.cs
- NativeMethods.cs
- SubtreeProcessor.cs
- ButtonAutomationPeer.cs
- DocumentAutomationPeer.cs
- XmlElementAttribute.cs
- MailSettingsSection.cs
- EventProviderClassic.cs
- InvokePattern.cs
- Stroke2.cs
- AnimationClock.cs
- BaseProcessor.cs
- ChannelSettingsElement.cs
- NativeCppClassAttribute.cs
- SslStreamSecurityElement.cs
- HttpEncoder.cs
- PagedControl.cs
- Configuration.cs
- HttpCapabilitiesEvaluator.cs
- SqlDependency.cs
- MouseWheelEventArgs.cs
- PermissionSetEnumerator.cs
- TraceContextRecord.cs
- ApplicationFileParser.cs
- FrameworkObject.cs
- x509store.cs
- SimpleFileLog.cs
- ZipIORawDataFileBlock.cs
- SqlExpressionNullability.cs
- XmlWriterTraceListener.cs
- MemberInitExpression.cs
- ChangeProcessor.cs
- TypedElement.cs
- XmlStringTable.cs
- PasswordDeriveBytes.cs
- AutoResizedEvent.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- ProcessHostFactoryHelper.cs
- SupportingTokenSpecification.cs
- HierarchicalDataSourceConverter.cs
- EventWaitHandleSecurity.cs
- TypeConverterValueSerializer.cs
- XmlSchemaObjectTable.cs
- MethodInfo.cs
- PageCatalogPart.cs
- ResourceContainer.cs
- BindingOperations.cs
- GuidConverter.cs
- InvalidProgramException.cs
- CharacterShapingProperties.cs
- ContentElement.cs
- RangeContentEnumerator.cs
- OneToOneMappingSerializer.cs
- Compiler.cs
- MimeWriter.cs
- Message.cs
- HttpServerUtilityWrapper.cs
- FixedSOMTable.cs
- OptimizedTemplateContentHelper.cs
- RtfToXamlReader.cs
- CacheRequest.cs
- OdbcCommandBuilder.cs
- BaseCollection.cs
- ApplyHostConfigurationBehavior.cs
- SqlUserDefinedAggregateAttribute.cs
- ServiceOperationParameter.cs
- PageAsyncTaskManager.cs
- QilValidationVisitor.cs
- X500Name.cs
- PeerApplication.cs
- XslCompiledTransform.cs
- Viewport3DAutomationPeer.cs
- DocumentPageHost.cs
- FixedPageAutomationPeer.cs
- DispatchWrapper.cs
- SoapCodeExporter.cs
- SqlUDTStorage.cs
- MetaModel.cs
- ControlBuilder.cs
- XDeferredAxisSource.cs
- Menu.cs
- BackStopAuthenticationModule.cs
- TCPClient.cs
- ParameterInfo.cs
- EntryPointNotFoundException.cs
- OdbcConnectionHandle.cs
- DecryptRequest.cs
- coordinatorfactory.cs
- PropertyReferenceSerializer.cs
- ThemeableAttribute.cs
- SortedList.cs
- SchemaManager.cs
- DataGridColumn.cs
- InputGestureCollection.cs
- CodeNamespaceImportCollection.cs
- ObjectStateFormatter.cs
- HtmlElementCollection.cs