Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Core / CSharp / System / Windows / Media3D / Transform3DGroup.cs / 1 / Transform3DGroup.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: 3D transform collection. // // See spec at http://avalon/medialayer/Specifications/Avalon3D%20API%20Spec.mht // // History: // 06/11/2003 : t-gregr - Created // 01/19/2004 : jordanpa - Changed to Transform3DGroup // //--------------------------------------------------------------------------- using System; using System.Windows; using System.Windows.Media; using System.Windows.Media.Composition; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using System.Collections; using System.Collections.Generic; using MS.Internal; using System.Windows.Media.Animation; using System.Globalization; using System.Text; using System.Runtime.InteropServices; using System.Windows.Markup; using System.Diagnostics; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media.Media3D { ////// 3D transform group. /// [ContentProperty("Children")] public sealed partial class Transform3DGroup : Transform3D { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors ////// Default constructor. /// public Transform3DGroup() {} #endregion Constructors //------------------------------------------------------ // // Public Methods // //----------------------------------------------------- #region Public Methods ////// Return the current transformation value. /// public override Matrix3D Value { get { ReadPreamble(); Matrix3D transform = new Matrix3D(); Append(ref transform); return transform; } } ////// Whether the transform is affine. /// public override bool IsAffine { get { ReadPreamble(); Transform3DCollection children = Children; if (children != null) { for (int i = 0, count = children.Count; i < count; ++i) { Transform3D transform = children.Internal_GetItem(i); if (!transform.IsAffine) { return false; } } } return true; } } #endregion Public Methods //------------------------------------------------------ // // Internal Methods // //------------------------------------------------------ internal override void Append(ref Matrix3D matrix) { Transform3DCollection children = Children; if (children != null) { for (int i = 0, count = children.Count; i < count; i++) { children.Internal_GetItem(i).Append(ref matrix); } } } //----------------------------------------------------- // // Private Fields // //------------------------------------------------------ } } // 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 transform collection. // // See spec at http://avalon/medialayer/Specifications/Avalon3D%20API%20Spec.mht // // History: // 06/11/2003 : t-gregr - Created // 01/19/2004 : jordanpa - Changed to Transform3DGroup // //--------------------------------------------------------------------------- using System; using System.Windows; using System.Windows.Media; using System.Windows.Media.Composition; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using System.Collections; using System.Collections.Generic; using MS.Internal; using System.Windows.Media.Animation; using System.Globalization; using System.Text; using System.Runtime.InteropServices; using System.Windows.Markup; using System.Diagnostics; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media.Media3D { ////// 3D transform group. /// [ContentProperty("Children")] public sealed partial class Transform3DGroup : Transform3D { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors ////// Default constructor. /// public Transform3DGroup() {} #endregion Constructors //------------------------------------------------------ // // Public Methods // //----------------------------------------------------- #region Public Methods ////// Return the current transformation value. /// public override Matrix3D Value { get { ReadPreamble(); Matrix3D transform = new Matrix3D(); Append(ref transform); return transform; } } ////// Whether the transform is affine. /// public override bool IsAffine { get { ReadPreamble(); Transform3DCollection children = Children; if (children != null) { for (int i = 0, count = children.Count; i < count; ++i) { Transform3D transform = children.Internal_GetItem(i); if (!transform.IsAffine) { return false; } } } return true; } } #endregion Public Methods //------------------------------------------------------ // // Internal Methods // //------------------------------------------------------ internal override void Append(ref Matrix3D matrix) { Transform3DCollection children = Children; if (children != null) { for (int i = 0, count = children.Count; i < count; i++) { children.Internal_GetItem(i).Append(ref matrix); } } } //----------------------------------------------------- // // Private Fields // //------------------------------------------------------ } } // 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
- PanelStyle.cs
- CacheMemory.cs
- CompModHelpers.cs
- BoundsDrawingContextWalker.cs
- ComponentTray.cs
- MenuItemBinding.cs
- RequestCacheManager.cs
- DocumentGridContextMenu.cs
- QilPatternFactory.cs
- IntSecurity.cs
- TransactionValidationBehavior.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- EntitySetRetriever.cs
- MemberDescriptor.cs
- EditorPart.cs
- ContainerParagraph.cs
- CloudCollection.cs
- CodeExporter.cs
- CodeTypeConstructor.cs
- DataPagerField.cs
- EntityStoreSchemaGenerator.cs
- BindingUtils.cs
- DataGridView.cs
- SamlEvidence.cs
- EventProvider.cs
- XsdBuildProvider.cs
- NonBatchDirectoryCompiler.cs
- Tablet.cs
- DataObject.cs
- AsyncResult.cs
- CompositionDesigner.cs
- RecordManager.cs
- TextBoxLine.cs
- X509CertificateValidationMode.cs
- AddInPipelineAttributes.cs
- UseLicense.cs
- OperationDescription.cs
- ProjectedSlot.cs
- VoiceChangeEventArgs.cs
- PropertyChangingEventArgs.cs
- CompModSwitches.cs
- DeadCharTextComposition.cs
- ReflectionServiceProvider.cs
- DragDrop.cs
- CalendarAutoFormat.cs
- BorderGapMaskConverter.cs
- SessionStateModule.cs
- TextBox.cs
- ApplicationId.cs
- DoubleAnimationUsingKeyFrames.cs
- ObjectItemCollection.cs
- DataRecordObjectView.cs
- AssemblyFilter.cs
- BamlRecords.cs
- OleDbPropertySetGuid.cs
- DisableDpiAwarenessAttribute.cs
- Formatter.cs
- VirtualDirectoryMapping.cs
- UdpSocketReceiveManager.cs
- PeerEndPoint.cs
- SystemNetHelpers.cs
- DataGridViewUtilities.cs
- PrinterSettings.cs
- MappingSource.cs
- InternalConfigEventArgs.cs
- __FastResourceComparer.cs
- TableLayoutColumnStyleCollection.cs
- BitmapEncoder.cs
- ProcessModelSection.cs
- RequestBringIntoViewEventArgs.cs
- PackageDigitalSignatureManager.cs
- RegexReplacement.cs
- XmlTextReaderImplHelpers.cs
- RequestTimeoutManager.cs
- SoapIgnoreAttribute.cs
- XmlILStorageConverter.cs
- AttachInfo.cs
- HttpValueCollection.cs
- NameTable.cs
- DataStorage.cs
- AssociationTypeEmitter.cs
- CancelEventArgs.cs
- BitmapVisualManager.cs
- BasicAsyncResult.cs
- OLEDB_Enum.cs
- ReflectionUtil.cs
- HtmlElement.cs
- VScrollBar.cs
- ElementAction.cs
- Point3DIndependentAnimationStorage.cs
- ResponseBodyWriter.cs
- ColumnResizeAdorner.cs
- webclient.cs
- ExpressionBuilder.cs
- ProtocolsSection.cs
- XmlArrayItemAttribute.cs
- CodeIdentifiers.cs
- DataGridViewTextBoxColumn.cs
- ArrayWithOffset.cs
- TextEndOfLine.cs