Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media3D / Model3D.cs / 1305600 / Model3D.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: 3D model implementation. // // See spec at http://avalon/medialayer/Specifications/Avalon3D%20API%20Spec.mht // // History: // 06/18/2003 : t-gregr - Created // //--------------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Windows; using System.Windows.Media; using System.Windows.Media.Animation; using MS.Internal.Media3D; namespace System.Windows.Media.Media3D { ////// Model3D is the abstract model that everything builds from. /// [Localizability(LocalizationCategory.None, Readability = Readability.Unreadable)] // cannot be read & localized as string public abstract partial class Model3D : Animatable { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors // Prevent 3rd parties from extending this abstract base class. internal Model3D() {} #endregion Constructors //------------------------------------------------------ // // Public Methods // //----------------------------------------------------- //------------------------------------------------------ // // Public Properties // //------------------------------------------------------ #region Public Properties ////// Gets bounds for this model. /// public Rect3D Bounds { get { ReadPreamble(); return CalculateSubgraphBoundsOuterSpace(); } } #endregion Public Properties //----------------------------------------------------- // // Internal Methods // //------------------------------------------------------ #region Internal Methods // NOTE: Model3D hit testing takes the rayParams in the outer space of the // Model3D. That is, RayHitTest() will apply this model's transform // to the ray for the caller. // // This is different than Visual hit testing which does not transform // the hit testing parameters by the Visual's transform. internal void RayHitTest(RayHitTestParameters rayParams) { Transform3D transform = Transform; rayParams.PushModelTransform(transform); RayHitTestCore(rayParams); rayParams.PopTransform(transform); } internal abstract void RayHitTestCore(RayHitTestParameters rayParams); ////// Returns the bounds of the Model3D subgraph rooted at this Model3D. /// /// Outer space refers to the space after this Model's Transform is /// applied -- or said another way, applying a transform to this Model /// affects it's outer bounds. (While its inner bounds remain unchanged.) /// internal Rect3D CalculateSubgraphBoundsOuterSpace() { Rect3D innerBounds = CalculateSubgraphBoundsInnerSpace(); return M3DUtil.ComputeTransformedAxisAlignedBoundingBox(ref innerBounds, Transform); } ////// Returns the bounds of the Model3D subgraph rooted at this Model3D. /// /// Inner space refers to the space before this Model's Transform is /// applied -- or said another way, applying a transform to this Model /// only affects it's outer bounds. Its inner bounds remain unchanged. /// internal abstract Rect3D CalculateSubgraphBoundsInnerSpace(); #endregion Internal Methods } } // 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 model implementation. // // See spec at http://avalon/medialayer/Specifications/Avalon3D%20API%20Spec.mht // // History: // 06/18/2003 : t-gregr - Created // //--------------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Windows; using System.Windows.Media; using System.Windows.Media.Animation; using MS.Internal.Media3D; namespace System.Windows.Media.Media3D { ////// Model3D is the abstract model that everything builds from. /// [Localizability(LocalizationCategory.None, Readability = Readability.Unreadable)] // cannot be read & localized as string public abstract partial class Model3D : Animatable { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors // Prevent 3rd parties from extending this abstract base class. internal Model3D() {} #endregion Constructors //------------------------------------------------------ // // Public Methods // //----------------------------------------------------- //------------------------------------------------------ // // Public Properties // //------------------------------------------------------ #region Public Properties ////// Gets bounds for this model. /// public Rect3D Bounds { get { ReadPreamble(); return CalculateSubgraphBoundsOuterSpace(); } } #endregion Public Properties //----------------------------------------------------- // // Internal Methods // //------------------------------------------------------ #region Internal Methods // NOTE: Model3D hit testing takes the rayParams in the outer space of the // Model3D. That is, RayHitTest() will apply this model's transform // to the ray for the caller. // // This is different than Visual hit testing which does not transform // the hit testing parameters by the Visual's transform. internal void RayHitTest(RayHitTestParameters rayParams) { Transform3D transform = Transform; rayParams.PushModelTransform(transform); RayHitTestCore(rayParams); rayParams.PopTransform(transform); } internal abstract void RayHitTestCore(RayHitTestParameters rayParams); ////// Returns the bounds of the Model3D subgraph rooted at this Model3D. /// /// Outer space refers to the space after this Model's Transform is /// applied -- or said another way, applying a transform to this Model /// affects it's outer bounds. (While its inner bounds remain unchanged.) /// internal Rect3D CalculateSubgraphBoundsOuterSpace() { Rect3D innerBounds = CalculateSubgraphBoundsInnerSpace(); return M3DUtil.ComputeTransformedAxisAlignedBoundingBox(ref innerBounds, Transform); } ////// Returns the bounds of the Model3D subgraph rooted at this Model3D. /// /// Inner space refers to the space before this Model's Transform is /// applied -- or said another way, applying a transform to this Model /// only affects it's outer bounds. Its inner bounds remain unchanged. /// internal abstract Rect3D CalculateSubgraphBoundsInnerSpace(); #endregion Internal Methods } } // 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
- FileReservationCollection.cs
- Line.cs
- LocalTransaction.cs
- CompilationUtil.cs
- Int64AnimationUsingKeyFrames.cs
- TrackPointCollection.cs
- StringSorter.cs
- XsltLibrary.cs
- TabItem.cs
- DivideByZeroException.cs
- EndpointAddressMessageFilterTable.cs
- EventListener.cs
- DesignColumnCollection.cs
- ActiveXHelper.cs
- ExpandSegment.cs
- DBSchemaTable.cs
- MetabaseServerConfig.cs
- FrameworkTextComposition.cs
- LayoutExceptionEventArgs.cs
- SourceFileBuildProvider.cs
- PopupRoot.cs
- ResourceDescriptionAttribute.cs
- DataServiceConfiguration.cs
- ExtendedPropertyDescriptor.cs
- WriteTimeStream.cs
- BaseInfoTable.cs
- AuthenticationManager.cs
- MultiSelectRootGridEntry.cs
- FontWeights.cs
- XMLSyntaxException.cs
- FontUnit.cs
- hwndwrapper.cs
- ListViewAutomationPeer.cs
- FunctionQuery.cs
- RunWorkerCompletedEventArgs.cs
- DirectionalLight.cs
- VirtualizedItemProviderWrapper.cs
- JournalEntryStack.cs
- ThaiBuddhistCalendar.cs
- Bezier.cs
- DragDropHelper.cs
- MultiViewDesigner.cs
- EntitySetBaseCollection.cs
- RSAPKCS1SignatureFormatter.cs
- ZoneButton.cs
- WebPartDescriptionCollection.cs
- CallbackValidator.cs
- ObjectItemConventionAssemblyLoader.cs
- CodeComment.cs
- TaskHelper.cs
- ThicknessConverter.cs
- DesignTimeVisibleAttribute.cs
- ElementAtQueryOperator.cs
- SqlNode.cs
- SingleObjectCollection.cs
- VolatileEnlistmentMultiplexing.cs
- FlowDocumentPaginator.cs
- PathFigureCollectionConverter.cs
- Events.cs
- DataColumnMappingCollection.cs
- SiteOfOriginPart.cs
- WebControlsSection.cs
- VirtualPathProvider.cs
- SchemaImporterExtensionElement.cs
- RpcCryptoRequest.cs
- WizardStepBase.cs
- FrameworkPropertyMetadata.cs
- FieldDescriptor.cs
- GatewayIPAddressInformationCollection.cs
- TemplateParser.cs
- SpecularMaterial.cs
- StyleXamlParser.cs
- BindingList.cs
- TransformedBitmap.cs
- ZipIOExtraFieldZip64Element.cs
- sortedlist.cs
- StaticResourceExtension.cs
- LayoutEngine.cs
- CopyOfAction.cs
- Application.cs
- LineInfo.cs
- WebBrowser.cs
- DynamicUpdateCommand.cs
- CompositeScriptReferenceEventArgs.cs
- HttpException.cs
- EntityConnectionStringBuilderItem.cs
- SymbolType.cs
- MD5Cng.cs
- BufferAllocator.cs
- TagMapCollection.cs
- EditorZoneBase.cs
- TreeNodeStyle.cs
- XmlComplianceUtil.cs
- CompleteWizardStep.cs
- LocatorBase.cs
- ArgumentOutOfRangeException.cs
- WebBrowserSiteBase.cs
- SafeHandles.cs
- Console.cs
- comcontractssection.cs