Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / 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
- ComponentResourceKeyConverter.cs
- SqlExpressionNullability.cs
- ConfigUtil.cs
- OperationAbortedException.cs
- DefaultAuthorizationContext.cs
- SchemaType.cs
- EntitySqlQueryState.cs
- EntityFrameworkVersions.cs
- LoginView.cs
- MouseDevice.cs
- ByteStreamGeometryContext.cs
- Msec.cs
- XmlAnyElementAttributes.cs
- InvalidDataException.cs
- QilUnary.cs
- webbrowsersite.cs
- HandlerMappingMemo.cs
- AuthStoreRoleProvider.cs
- XmlDocument.cs
- CompleteWizardStep.cs
- Utilities.cs
- UdpRetransmissionSettings.cs
- PreparingEnlistment.cs
- ZoneButton.cs
- _SslStream.cs
- RegexCapture.cs
- VerbConverter.cs
- SiteMembershipCondition.cs
- TabControl.cs
- HtmlForm.cs
- HMACSHA384.cs
- EditorAttribute.cs
- ByteViewer.cs
- XmlBindingWorker.cs
- MediaContext.cs
- DbConnectionStringBuilder.cs
- CLSCompliantAttribute.cs
- XPathNode.cs
- SmtpMail.cs
- FlowLayout.cs
- SystemResourceKey.cs
- WorkflowMarkupSerializer.cs
- WebMessageFormatHelper.cs
- backend.cs
- XmlStringTable.cs
- HeaderLabel.cs
- XmlBinaryReader.cs
- InternalBufferManager.cs
- CursorConverter.cs
- UntypedNullExpression.cs
- XamlWrapperReaders.cs
- ConfigurationLoaderException.cs
- UriTemplate.cs
- HScrollProperties.cs
- WebSysDescriptionAttribute.cs
- ListSourceHelper.cs
- RandomDelaySendsAsyncResult.cs
- UIElement3DAutomationPeer.cs
- SystemIPInterfaceStatistics.cs
- Parser.cs
- Point3D.cs
- NamedPermissionSet.cs
- UnmanagedBitmapWrapper.cs
- ValidationResult.cs
- HttpListener.cs
- HandledEventArgs.cs
- StateDesigner.TransitionInfo.cs
- ContractListAdapter.cs
- MethodBuilderInstantiation.cs
- ToolboxDataAttribute.cs
- ValueQuery.cs
- SQLByte.cs
- RoleManagerModule.cs
- EnumType.cs
- XPathScanner.cs
- InvokeHandlers.cs
- DataMemberAttribute.cs
- documentsequencetextpointer.cs
- BinaryNode.cs
- TextSpanModifier.cs
- DataGridGeneralPage.cs
- FieldAccessException.cs
- UriParserTemplates.cs
- KeySplineConverter.cs
- SHA512Managed.cs
- BitmapImage.cs
- CompilerError.cs
- ExecutionEngineException.cs
- HttpResponseInternalWrapper.cs
- FormatSelectingMessageInspector.cs
- HyperlinkAutomationPeer.cs
- Exceptions.cs
- SByte.cs
- ScalarConstant.cs
- Size.cs
- IdentifierService.cs
- Collection.cs
- HttpProfileGroupBase.cs
- DispatcherObject.cs
- AdornerHitTestResult.cs