Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media3D / Transform3DGroup.cs / 1305600 / 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 : [....] - 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 : [....] - 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
- EntityContainerAssociationSet.cs
- TextElement.cs
- MobileFormsAuthentication.cs
- QueryExpr.cs
- TraceLevelStore.cs
- ClipboardProcessor.cs
- WorkflowRuntimeBehavior.cs
- WinFormsComponentEditor.cs
- NavigationEventArgs.cs
- DataTransferEventArgs.cs
- GroupQuery.cs
- FontSource.cs
- FillErrorEventArgs.cs
- RegexRunnerFactory.cs
- TypedDataSetSchemaImporterExtension.cs
- DesignerLoader.cs
- Utility.cs
- ConsumerConnectionPoint.cs
- EntityExpressionVisitor.cs
- CodeDirectionExpression.cs
- RemoteWebConfigurationHost.cs
- IgnoreFileBuildProvider.cs
- NegotiateStream.cs
- StyleCollection.cs
- LassoHelper.cs
- ClientRoleProvider.cs
- XNodeValidator.cs
- GeneralTransform2DTo3DTo2D.cs
- DataGridItem.cs
- XamlPathDataSerializer.cs
- SqlUtils.cs
- SplashScreen.cs
- SqlXml.cs
- ConfigurationSectionGroup.cs
- BufferedGraphics.cs
- EventLogPropertySelector.cs
- DrawingContextWalker.cs
- LinearKeyFrames.cs
- recordstatescratchpad.cs
- MsmqException.cs
- BaseCAMarshaler.cs
- ManifestResourceInfo.cs
- SystemIPInterfaceStatistics.cs
- MissingManifestResourceException.cs
- WindowsEditBox.cs
- ItemCheckedEvent.cs
- TableHeaderCell.cs
- InnerItemCollectionView.cs
- NavigationCommands.cs
- ListItemViewControl.cs
- StatusStrip.cs
- ServiceDurableInstanceContextProvider.cs
- FilterableAttribute.cs
- FlowLayout.cs
- SafeRightsManagementSessionHandle.cs
- DesignerSerializerAttribute.cs
- TemplateKey.cs
- ArraySegment.cs
- XsdValidatingReader.cs
- PrintingPermission.cs
- ObjectDataSourceChooseMethodsPanel.cs
- Events.cs
- JsonFormatGeneratorStatics.cs
- UxThemeWrapper.cs
- Brushes.cs
- RichTextBoxContextMenu.cs
- AppDomainManager.cs
- VBCodeProvider.cs
- FontEmbeddingManager.cs
- PostBackOptions.cs
- ObjectDataSourceEventArgs.cs
- XappLauncher.cs
- ListBoxItemAutomationPeer.cs
- CodeTypeDeclaration.cs
- SchemaImporter.cs
- RelationshipManager.cs
- UncommonField.cs
- CollectionViewSource.cs
- DesignerActionVerbItem.cs
- MeshGeometry3D.cs
- ActivityCodeDomSerializationManager.cs
- KeyConverter.cs
- CatalogZoneBase.cs
- DocumentPageHost.cs
- FormatVersion.cs
- ProgressChangedEventArgs.cs
- ExplicitDiscriminatorMap.cs
- CopyAction.cs
- NonBatchDirectoryCompiler.cs
- Panel.cs
- CodeNamespaceImportCollection.cs
- TimersDescriptionAttribute.cs
- DataTableNewRowEvent.cs
- IOException.cs
- ExceptionNotification.cs
- SponsorHelper.cs
- PersonalizationStateInfoCollection.cs
- SqlCachedBuffer.cs
- ViewStateException.cs
- ExclusiveCanonicalizationTransform.cs