Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / SkewTransform.cs / 1305600 / 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
- AssemblyInfo.cs
- DateTimeOffset.cs
- ConsoleCancelEventArgs.cs
- ConfigurationLockCollection.cs
- RestHandler.cs
- WebPartAddingEventArgs.cs
- Win32PrintDialog.cs
- ReadOnlyPropertyMetadata.cs
- XamlBrushSerializer.cs
- StreamProxy.cs
- AssemblyUtil.cs
- Atom10FormatterFactory.cs
- ColumnWidthChangingEvent.cs
- DetailsViewPagerRow.cs
- ScriptModule.cs
- TransportConfigurationTypeElementCollection.cs
- ExpressionEditorAttribute.cs
- BackStopAuthenticationModule.cs
- IImplicitResourceProvider.cs
- ResXFileRef.cs
- HelpEvent.cs
- StaticFileHandler.cs
- RectAnimationClockResource.cs
- Label.cs
- DataGridViewButtonCell.cs
- ProtocolsConfiguration.cs
- OutputCacheProviderCollection.cs
- BrowserDefinitionCollection.cs
- WorkflowTerminatedException.cs
- LateBoundChannelParameterCollection.cs
- PixelFormats.cs
- MemberPath.cs
- SHA1CryptoServiceProvider.cs
- String.cs
- DateTime.cs
- BinaryHeap.cs
- TextBoxView.cs
- SQLByte.cs
- PolicyValidationException.cs
- Int32CollectionConverter.cs
- ZipIOExtraField.cs
- CompiledQuery.cs
- AdapterDictionary.cs
- ObjectQueryExecutionPlan.cs
- NativeRecognizer.cs
- TypeListConverter.cs
- SqlServices.cs
- ByteFacetDescriptionElement.cs
- C14NUtil.cs
- ObjectStorage.cs
- WpfSharedBamlSchemaContext.cs
- WriteTimeStream.cs
- XmlIncludeAttribute.cs
- Repeater.cs
- ReaderWriterLockWrapper.cs
- RuntimeConfigLKG.cs
- ISCIIEncoding.cs
- PlatformNotSupportedException.cs
- PropertyFilterAttribute.cs
- ApplicationCommands.cs
- HwndSubclass.cs
- FixedFlowMap.cs
- recordstatescratchpad.cs
- TextSelectionHelper.cs
- FileSystemWatcher.cs
- IOThreadScheduler.cs
- NamespaceListProperty.cs
- GridViewEditEventArgs.cs
- SynchronizationLockException.cs
- ListView.cs
- CharacterBufferReference.cs
- FileInfo.cs
- RequestCache.cs
- Pts.cs
- WhiteSpaceTrimStringConverter.cs
- TextSegment.cs
- StackSpiller.cs
- WebCategoryAttribute.cs
- BulletChrome.cs
- Point4DConverter.cs
- RowToFieldTransformer.cs
- ControlIdConverter.cs
- AlphabetConverter.cs
- GiveFeedbackEvent.cs
- HtmlGenericControl.cs
- TransactionChannelListener.cs
- DataExpression.cs
- DataServiceProcessingPipelineEventArgs.cs
- SerializerDescriptor.cs
- ApplicationSettingsBase.cs
- ColorConvertedBitmap.cs
- WeakReference.cs
- SerializationObjectManager.cs
- TypeGeneratedEventArgs.cs
- GenericsInstances.cs
- Viewport2DVisual3D.cs
- CopyNodeSetAction.cs
- ConfigurationElement.cs
- XmlWrappingReader.cs
- StateBag.cs