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 / Media / SkewTransform.cs / 1 / SkewTransform.cs
//------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, 2001 // // File: SkewTransform.cs //----------------------------------------------------------------------------- using MS.Internal; using MS.Internal.PresentationCore; using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.Text; using System.Windows; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media { ////// Create a skew X transformation. /// public sealed partial class SkewTransform : Transform { ////// /// public SkewTransform() { } ////// /// public SkewTransform(double angleX, double angleY) { AngleX = angleX; AngleY = angleY; } ////// /// public SkewTransform(double angleX, double angleY, double centerX, double centerY) : this(angleX, angleY) { CenterX = centerX; CenterY = centerY; } ////// Return the current transformation value. /// public override Matrix Value { get { ReadPreamble(); Matrix matrix = new Matrix(); double angleX = AngleX; double angleY = AngleY; double centerX = CenterX; double centerY = CenterY; bool hasCenter = centerX != 0 || centerY != 0; if (hasCenter) { matrix.Translate(-centerX, -centerY); } matrix.Skew(angleX, angleY); if (hasCenter) { matrix.Translate(centerX, centerY); } return matrix; } } ////// Returns true if transformation matches the identity transform. /// internal override bool IsIdentity { get { return AngleX == 0 && AngleY == 0 && CanFreeze; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, 2001 // // File: SkewTransform.cs //----------------------------------------------------------------------------- using MS.Internal; using MS.Internal.PresentationCore; using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.Text; using System.Windows; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media { ////// Create a skew X transformation. /// public sealed partial class SkewTransform : Transform { ////// /// public SkewTransform() { } ////// /// public SkewTransform(double angleX, double angleY) { AngleX = angleX; AngleY = angleY; } ////// /// public SkewTransform(double angleX, double angleY, double centerX, double centerY) : this(angleX, angleY) { CenterX = centerX; CenterY = centerY; } ////// Return the current transformation value. /// public override Matrix Value { get { ReadPreamble(); Matrix matrix = new Matrix(); double angleX = AngleX; double angleY = AngleY; double centerX = CenterX; double centerY = CenterY; bool hasCenter = centerX != 0 || centerY != 0; if (hasCenter) { matrix.Translate(-centerX, -centerY); } matrix.Skew(angleX, angleY); if (hasCenter) { matrix.Translate(centerX, centerY); } return matrix; } } ////// Returns true if transformation matches the identity transform. /// internal override bool IsIdentity { get { return AngleX == 0 && AngleY == 0 && CanFreeze; } } } } // 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
- BlockCollection.cs
- SerializationStore.cs
- Int32Converter.cs
- PrimitiveDataContract.cs
- DataKey.cs
- Rotation3D.cs
- TextEditorSelection.cs
- SetMemberBinder.cs
- ImplicitInputBrush.cs
- WebPartDisplayModeCollection.cs
- DBSchemaRow.cs
- StrokeCollection2.cs
- AlternationConverter.cs
- NamespaceCollection.cs
- StorageMappingItemCollection.cs
- Utils.cs
- EnumerableRowCollectionExtensions.cs
- DataObjectEventArgs.cs
- SingleAnimationUsingKeyFrames.cs
- TableSectionStyle.cs
- ArgumentValidation.cs
- PerfCounterSection.cs
- SerializerProvider.cs
- TypeSemantics.cs
- StdValidatorsAndConverters.cs
- HttpModuleActionCollection.cs
- _NtlmClient.cs
- ElementAction.cs
- InvalidPropValue.cs
- GenericEnumConverter.cs
- TextFormatterContext.cs
- PipeSecurity.cs
- cookie.cs
- XPathNavigatorReader.cs
- ReadOnlyPermissionSet.cs
- FontDialog.cs
- ClientCredentials.cs
- SharedStream.cs
- ChannelAcceptor.cs
- TableColumn.cs
- NotificationContext.cs
- nulltextcontainer.cs
- DtrList.cs
- SqlUtils.cs
- NameValueFileSectionHandler.cs
- GeometryCollection.cs
- ProfileManager.cs
- XamlStyleSerializer.cs
- BufferModeSettings.cs
- ColorMatrix.cs
- RemotingException.cs
- DataGridRelationshipRow.cs
- DataGridLinkButton.cs
- ConfigurationSection.cs
- VisualStyleTypesAndProperties.cs
- RequiredAttributeAttribute.cs
- Vector3DConverter.cs
- TextRangeEditLists.cs
- TagMapCollection.cs
- ValueProviderWrapper.cs
- CodeArrayIndexerExpression.cs
- CalendarModeChangedEventArgs.cs
- DifferencingCollection.cs
- BridgeDataRecord.cs
- Grid.cs
- StructuralCache.cs
- Message.cs
- Collection.cs
- RawStylusActions.cs
- VisualProxy.cs
- ListenDesigner.cs
- NativeWrapper.cs
- SqlAliaser.cs
- Query.cs
- NetWebProxyFinder.cs
- StrokeNodeOperations.cs
- _AcceptOverlappedAsyncResult.cs
- DateTimeOffset.cs
- ToolStripDropDownItemDesigner.cs
- AssociationSetMetadata.cs
- Point3DCollection.cs
- MappedMetaModel.cs
- IdentifierService.cs
- StyleTypedPropertyAttribute.cs
- SqlBulkCopyColumnMappingCollection.cs
- MimeMapping.cs
- PageAdapter.cs
- WindowsAuthenticationEventArgs.cs
- FixedPageAutomationPeer.cs
- CustomLineCap.cs
- ApplicationActivator.cs
- NonBatchDirectoryCompiler.cs
- Rule.cs
- GridViewColumnHeader.cs
- CheckBoxAutomationPeer.cs
- RtfControls.cs
- WebPartsPersonalizationAuthorization.cs
- ListView.cs
- ClientCultureInfo.cs
- RadialGradientBrush.cs