Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Core / CSharp / System / Windows / Media3D / RotateTransform3D.cs / 1 / RotateTransform3D.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: 3D rotate transforms. // // See spec at http://avalon/medialayer/Specifications/Avalon3D%20API%20Spec.mht // // History: // 06/04/2003 : t-gregr - 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. //---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: 3D rotate transforms. // // See spec at http://avalon/medialayer/Specifications/Avalon3D%20API%20Spec.mht // // History: // 06/04/2003 : t-gregr - 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
- ShaderEffect.cs
- CroppedBitmap.cs
- DataAdapter.cs
- ProviderConnectionPointCollection.cs
- SessionPageStatePersister.cs
- BindingNavigator.cs
- ParamArrayAttribute.cs
- HostedImpersonationContext.cs
- ElasticEase.cs
- DictionaryManager.cs
- SortedDictionary.cs
- XPathNavigator.cs
- DataTableReaderListener.cs
- DataGridViewColumn.cs
- CursorConverter.cs
- DataPagerFieldCollection.cs
- DetailsViewInsertedEventArgs.cs
- DataComponentNameHandler.cs
- Soap12ProtocolImporter.cs
- ProgressBarAutomationPeer.cs
- DataGridCaption.cs
- AnnotationObservableCollection.cs
- TypeSystem.cs
- MsmqTransportElement.cs
- RegistrationServices.cs
- PropertySet.cs
- Win32.cs
- ProcessManager.cs
- FastEncoder.cs
- DaylightTime.cs
- DataConnectionHelper.cs
- Border.cs
- XmlParserContext.cs
- HighlightComponent.cs
- HTMLTagNameToTypeMapper.cs
- DocumentViewerConstants.cs
- SerialReceived.cs
- RawStylusInputCustomDataList.cs
- ErrorHandlerModule.cs
- Scene3D.cs
- SymLanguageType.cs
- Rectangle.cs
- recordstatescratchpad.cs
- MenuItem.cs
- FuncTypeConverter.cs
- Sql8ConformanceChecker.cs
- LocalizationCodeDomSerializer.cs
- RetrieveVirtualItemEventArgs.cs
- SponsorHelper.cs
- ToolStripItemDataObject.cs
- FormViewInsertedEventArgs.cs
- StretchValidation.cs
- CodeAttributeDeclaration.cs
- sqlstateclientmanager.cs
- TargetException.cs
- RangeEnumerable.cs
- MergeEnumerator.cs
- AppDomain.cs
- MembershipPasswordException.cs
- AndMessageFilterTable.cs
- ValidatorCompatibilityHelper.cs
- BindToObject.cs
- HelloMessageApril2005.cs
- WebRequestModulesSection.cs
- ConfigXmlSignificantWhitespace.cs
- Properties.cs
- Dump.cs
- QueryAccessibilityHelpEvent.cs
- SortedList.cs
- XmlSchemaSimpleTypeList.cs
- EntryWrittenEventArgs.cs
- Stream.cs
- InvalidateEvent.cs
- InstrumentationTracker.cs
- ClientBuildManager.cs
- DataContractSerializerFaultFormatter.cs
- AttributeParameterInfo.cs
- DataGridViewMethods.cs
- XmlChoiceIdentifierAttribute.cs
- MediaTimeline.cs
- KeyFrames.cs
- DataGridViewButtonColumn.cs
- SafeEventLogReadHandle.cs
- TextSegment.cs
- IPipelineRuntime.cs
- CodeObjectCreateExpression.cs
- RequestCache.cs
- SecUtil.cs
- DbSource.cs
- ColumnResult.cs
- JsonDeserializer.cs
- WorkflowInstanceExtensionCollection.cs
- Model3DGroup.cs
- ColumnTypeConverter.cs
- SignedXml.cs
- ProviderConnectionPointCollection.cs
- DynamicPropertyReader.cs
- DataColumnPropertyDescriptor.cs
- BitmapEffectvisualstate.cs
- MediaPlayer.cs