Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media3D / RotateTransform3D.cs / 1 / RotateTransform3D.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: 3D rotate transforms. // // See spec at [....]/medialayer/Specifications/Avalon3D%20API%20Spec.mht // // History: // 06/04/2003 : [....] - Created // //--------------------------------------------------------------------------- using System; using System.ComponentModel; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using MS.Internal; using System.ComponentModel.Design.Serialization; using System.Windows.Markup; namespace System.Windows.Media.Media3D { ////// 3D rotate transforms. /// public sealed partial class RotateTransform3D : AffineTransform3D { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors ////// Default constructor. /// public RotateTransform3D() {} ////// Constructor from Rotation3D. /// /// Rotation3D. public RotateTransform3D(Rotation3D rotation) { Rotation = rotation; } ////// Constructor from Rotation3D and center point. /// /// Rotation3D. /// Center point. public RotateTransform3D(Rotation3D rotation, Point3D center) { Rotation = rotation; CenterX = center.X; CenterY = center.Y; CenterZ = center.Z; } ////// Constructor from Rotation3D and center point. /// /// Rotation3D. /// X center /// Y center /// Z center public RotateTransform3D(Rotation3D rotation, double centerX, double centerY, double centerZ) { Rotation = rotation; CenterX = centerX; CenterY = centerY; CenterZ = centerZ; } #endregion Constructors //------------------------------------------------------ // // Public Methods // //----------------------------------------------------- //------------------------------------------------------ // // Public Properties // //------------------------------------------------------ #region Public Properties ////// Retrieves matrix representing the rotation. /// public override Matrix3D Value { get { ReadPreamble(); Rotation3D rotation = _cachedRotationValue; if (rotation == null) { return Matrix3D.Identity; } Quaternion quaternion = rotation.InternalQuaternion; Point3D center = new Point3D(_cachedCenterXValue, _cachedCenterYValue, _cachedCenterZValue); return Matrix3D.CreateRotationMatrix(ref quaternion, ref center); } } #endregion Public Properties internal override void Append(ref Matrix3D matrix) { matrix = matrix * 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
- Token.cs
- Cell.cs
- CssStyleCollection.cs
- RemoveFromCollection.cs
- Drawing.cs
- X509CertificateTokenFactoryCredential.cs
- WindowsTokenRoleProvider.cs
- PersonalizationProviderCollection.cs
- TouchDevice.cs
- ManifestResourceInfo.cs
- TreeNodeStyleCollection.cs
- FixedTextContainer.cs
- CompatibleIComparer.cs
- DynamicMethod.cs
- DbConnectionPoolCounters.cs
- HtmlAnchor.cs
- CodeStatement.cs
- ManipulationPivot.cs
- RowToFieldTransformer.cs
- SqlDataSourceCache.cs
- TemplateControlParser.cs
- TraceFilter.cs
- DeflateInput.cs
- ScrollChrome.cs
- RuntimeWrappedException.cs
- CursorConverter.cs
- CodeIdentifiers.cs
- IMembershipProvider.cs
- arc.cs
- CssTextWriter.cs
- EntityTransaction.cs
- SizeChangedEventArgs.cs
- CodeStatement.cs
- HttpWebResponse.cs
- WCFBuildProvider.cs
- MediaElement.cs
- FrameworkTextComposition.cs
- DropDownList.cs
- WriterOutput.cs
- DataGridViewAddColumnDialog.cs
- CatalogZoneBase.cs
- SurrogateSelector.cs
- GridLength.cs
- DockPanel.cs
- DataSetUtil.cs
- XMLSchema.cs
- PrimitiveDataContract.cs
- DataGridViewCellValidatingEventArgs.cs
- PixelShader.cs
- IntSumAggregationOperator.cs
- AssociationTypeEmitter.cs
- FormViewPagerRow.cs
- MessageDesigner.cs
- TableProvider.cs
- IriParsingElement.cs
- XmlBinaryReader.cs
- UrlRoutingModule.cs
- MouseOverProperty.cs
- SpecularMaterial.cs
- BamlRecordWriter.cs
- EventDescriptor.cs
- CqlErrorHelper.cs
- ConfigXmlText.cs
- ServiceDebugElement.cs
- HtmlElementEventArgs.cs
- DoubleCollectionValueSerializer.cs
- NumericUpDownAcceleration.cs
- SessionEndingCancelEventArgs.cs
- TextBox.cs
- LinkDesigner.cs
- DeflateEmulationStream.cs
- ConfigUtil.cs
- CallbackException.cs
- SmiRequestExecutor.cs
- DisplayNameAttribute.cs
- RectangleConverter.cs
- PrintEvent.cs
- SqlCacheDependencySection.cs
- GetReadStreamResult.cs
- baseaxisquery.cs
- CSharpCodeProvider.cs
- InitializerFacet.cs
- SafeFileMappingHandle.cs
- InputScopeAttribute.cs
- FormViewInsertEventArgs.cs
- ObjectStateManager.cs
- DbConnectionPoolGroup.cs
- AsynchronousChannel.cs
- WebPartsPersonalizationAuthorization.cs
- CodeDelegateCreateExpression.cs
- RoleGroupCollection.cs
- ToolStripLabel.cs
- ControlUtil.cs
- LockCookie.cs
- TransportChannelListener.cs
- ImageBrush.cs
- PerfCounters.cs
- DrawingContext.cs
- TranslateTransform3D.cs
- StyleCollection.cs