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 / Transform3D.cs / 1 / Transform3D.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: 3D transform implementation. // // See spec at http://avalon/medialayer/Specifications/Avalon3D%20API%20Spec.mht // // History: // 06/04/2003 : t-gregr - Created // //--------------------------------------------------------------------------- using MS.Internal.Media3D; using MS.Internal.PresentationCore; using System; using System.Diagnostics; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Media.Composition; namespace System.Windows.Media.Media3D { ////// 3D transformation. /// [Localizability(LocalizationCategory.None, Readability = Readability.Unreadable)] // cannot be read & localized as string public abstract partial class Transform3D : GeneralTransform3D { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors // Prevent 3rd parties from extending this abstract base class. internal Transform3D() {} #endregion Constructors //------------------------------------------------------ // // Public Methods // //----------------------------------------------------- #region Public Methods ////// Transforms the given point. /// /// Point to transform. ///Transformed point. public new Point3D Transform(Point3D point) { // this function is included due to forward compatability reasons return base.Transform(point); } ////// Transforms the given vector. /// /// Vector to transform. ///Transformed vector. public Vector3D Transform(Vector3D vector) { return Value.Transform(vector); } ////// Transforms the given point. /// /// Point to transform. ///Transformed point. public Point4D Transform(Point4D point) { return Value.Transform(point); } ////// Transforms the given list of points. /// /// List of points. public void Transform(Point3D[] points) { Value.Transform(points); } ////// Transforms the given list of vectors. /// /// List of vectors. public void Transform(Vector3D[] vectors) { Value.Transform(vectors); } ////// Transforms the given list of points. /// /// List of points. public void Transform(Point4D[] points) { Value.Transform(points); } ////// Transform a point /// /// Input point /// Output point ///True if the point was transformed successfuly, false otherwise public override bool TryTransform(Point3D inPoint, out Point3D result) { result = Value.Transform(inPoint); return true; } ////// Transforms the bounding box to the smallest axis aligned bounding box /// that contains all the points in the original bounding box /// /// Bounding box ///The transformed bounding box public override Rect3D TransformBounds(Rect3D rect) { return M3DUtil.ComputeTransformedAxisAlignedBoundingBox(ref rect, this); } ////// Returns the inverse transform if it has an inverse, null otherwise /// public override GeneralTransform3D Inverse { get { ReadPreamble(); Matrix3D matrix = Value; if (!matrix.HasInverse) { return null; } matrix.Invert(); return new MatrixTransform3D(matrix); } } ////// Returns a best effort affine transform /// internal override Transform3D AffineTransform { [FriendAccessAllowed] // Built into Core, also used by Framework. get { return this; } } #endregion Public Methods //------------------------------------------------------ // // Public Properties // //------------------------------------------------------ #region Public Properties ////// Identity transformation. /// public static Transform3D Identity { get { // Make sure identity matrix is initialized. if (s_identity == null) { MatrixTransform3D identity = new MatrixTransform3D(); identity.Freeze(); s_identity = identity; } return s_identity; } } ////// Determines whether the matrix is affine. /// public abstract bool IsAffine {get;} ////// Return the current transformation value. /// public abstract Matrix3D Value { get; } #endregion Public Properties internal abstract void Append(ref Matrix3D matrix); //----------------------------------------------------- // // Private Fields // //------------------------------------------------------ #region Private Fields private static Transform3D s_identity; #endregion 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 implementation. // // See spec at http://avalon/medialayer/Specifications/Avalon3D%20API%20Spec.mht // // History: // 06/04/2003 : t-gregr - Created // //--------------------------------------------------------------------------- using MS.Internal.Media3D; using MS.Internal.PresentationCore; using System; using System.Diagnostics; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Media.Composition; namespace System.Windows.Media.Media3D { ////// 3D transformation. /// [Localizability(LocalizationCategory.None, Readability = Readability.Unreadable)] // cannot be read & localized as string public abstract partial class Transform3D : GeneralTransform3D { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors // Prevent 3rd parties from extending this abstract base class. internal Transform3D() {} #endregion Constructors //------------------------------------------------------ // // Public Methods // //----------------------------------------------------- #region Public Methods ////// Transforms the given point. /// /// Point to transform. ///Transformed point. public new Point3D Transform(Point3D point) { // this function is included due to forward compatability reasons return base.Transform(point); } ////// Transforms the given vector. /// /// Vector to transform. ///Transformed vector. public Vector3D Transform(Vector3D vector) { return Value.Transform(vector); } ////// Transforms the given point. /// /// Point to transform. ///Transformed point. public Point4D Transform(Point4D point) { return Value.Transform(point); } ////// Transforms the given list of points. /// /// List of points. public void Transform(Point3D[] points) { Value.Transform(points); } ////// Transforms the given list of vectors. /// /// List of vectors. public void Transform(Vector3D[] vectors) { Value.Transform(vectors); } ////// Transforms the given list of points. /// /// List of points. public void Transform(Point4D[] points) { Value.Transform(points); } ////// Transform a point /// /// Input point /// Output point ///True if the point was transformed successfuly, false otherwise public override bool TryTransform(Point3D inPoint, out Point3D result) { result = Value.Transform(inPoint); return true; } ////// Transforms the bounding box to the smallest axis aligned bounding box /// that contains all the points in the original bounding box /// /// Bounding box ///The transformed bounding box public override Rect3D TransformBounds(Rect3D rect) { return M3DUtil.ComputeTransformedAxisAlignedBoundingBox(ref rect, this); } ////// Returns the inverse transform if it has an inverse, null otherwise /// public override GeneralTransform3D Inverse { get { ReadPreamble(); Matrix3D matrix = Value; if (!matrix.HasInverse) { return null; } matrix.Invert(); return new MatrixTransform3D(matrix); } } ////// Returns a best effort affine transform /// internal override Transform3D AffineTransform { [FriendAccessAllowed] // Built into Core, also used by Framework. get { return this; } } #endregion Public Methods //------------------------------------------------------ // // Public Properties // //------------------------------------------------------ #region Public Properties ////// Identity transformation. /// public static Transform3D Identity { get { // Make sure identity matrix is initialized. if (s_identity == null) { MatrixTransform3D identity = new MatrixTransform3D(); identity.Freeze(); s_identity = identity; } return s_identity; } } ////// Determines whether the matrix is affine. /// public abstract bool IsAffine {get;} ////// Return the current transformation value. /// public abstract Matrix3D Value { get; } #endregion Public Properties internal abstract void Append(ref Matrix3D matrix); //----------------------------------------------------- // // Private Fields // //------------------------------------------------------ #region Private Fields private static Transform3D s_identity; #endregion 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
- NativeObjectSecurity.cs
- FormatVersion.cs
- SqlDataSource.cs
- ActivityScheduledQuery.cs
- XslTransform.cs
- WorkflowExecutor.cs
- TableRow.cs
- EmptyControlCollection.cs
- ApplicationBuildProvider.cs
- CallbackValidator.cs
- LogEntry.cs
- MenuItemCollection.cs
- BindingCompleteEventArgs.cs
- ImageMapEventArgs.cs
- WorkflowIdleElement.cs
- ObjectTag.cs
- PixelFormats.cs
- TextDecorationLocationValidation.cs
- MachineKeySection.cs
- DocComment.cs
- ConfigErrorGlyph.cs
- CodeGotoStatement.cs
- HandleTable.cs
- MaskedTextProvider.cs
- FontFamilyIdentifier.cs
- oledbmetadatacollectionnames.cs
- PagePropertiesChangingEventArgs.cs
- DataGridViewCellLinkedList.cs
- XmlQueryType.cs
- mactripleDES.cs
- SafeEventLogWriteHandle.cs
- MaskedTextBoxTextEditorDropDown.cs
- Message.cs
- safelink.cs
- ToolStripDropTargetManager.cs
- SafeArrayRankMismatchException.cs
- NavigationService.cs
- DataBindingCollectionEditor.cs
- WindowsGraphicsCacheManager.cs
- ConnectionConsumerAttribute.cs
- DragDrop.cs
- EdmProviderManifest.cs
- InfoCardTraceRecord.cs
- Component.cs
- RelOps.cs
- ClosureBinding.cs
- parserscommon.cs
- DesignerDataConnection.cs
- DataMemberAttribute.cs
- TypeInfo.cs
- HttpValueCollection.cs
- BaseDataBoundControl.cs
- CallSite.cs
- TemplateBindingExtension.cs
- ModelVisual3D.cs
- HttpCachePolicy.cs
- CodeThrowExceptionStatement.cs
- WorkflowServiceHostFactory.cs
- DataSourceView.cs
- ReceiveContext.cs
- BitStack.cs
- CodeTypeOfExpression.cs
- LoginDesigner.cs
- XmlObjectSerializerReadContext.cs
- ClipboardProcessor.cs
- ASCIIEncoding.cs
- PropertyItem.cs
- FormsAuthenticationConfiguration.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- BaseHashHelper.cs
- HwndHostAutomationPeer.cs
- RecognizedPhrase.cs
- DbMetaDataCollectionNames.cs
- VisualBasicSettings.cs
- SecUtil.cs
- DataProviderNameConverter.cs
- BitmapEffectInputConnector.cs
- MatrixKeyFrameCollection.cs
- UIPermission.cs
- HTTPNotFoundHandler.cs
- InternalsVisibleToAttribute.cs
- MenuItemAutomationPeer.cs
- LinearKeyFrames.cs
- EntityViewGenerator.cs
- WebContext.cs
- HttpCachePolicy.cs
- TabletCollection.cs
- MetadataSource.cs
- BrowserDefinitionCollection.cs
- HttpEncoder.cs
- ErrorFormatterPage.cs
- EdmPropertyAttribute.cs
- PartialTrustHelpers.cs
- ExpressionSelection.cs
- EntryIndex.cs
- BinHexDecoder.cs
- AutoScrollHelper.cs
- SharedPersonalizationStateInfo.cs
- StringBuilder.cs
- MethodBuilder.cs