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 / QuadraticBezierSegment.cs / 1 / QuadraticBezierSegment.cs
//------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, 2001 // // File: QuadraticBezierSegment.cs //----------------------------------------------------------------------------- using System; using MS.Internal; using MS.Internal.PresentationCore; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using System.Collections; using System.Text; using System.Globalization; using System.Windows.Media; using System.Windows; using System.Text.RegularExpressions; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using System.Diagnostics; using System.Security; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media { ////// QuadraticBezierSegment /// public sealed partial class QuadraticBezierSegment : PathSegment { #region Constructors ////// /// public QuadraticBezierSegment() { } ////// /// public QuadraticBezierSegment(Point point1, Point point2, bool isStroked) { Point1 = point1; Point2 = point2; IsStroked = isStroked; } ////// /// internal QuadraticBezierSegment(Point point1, Point point2, bool isStroked, bool isSmoothJoin) { Point1 = point1; Point2 = point2; IsStroked = isStroked; IsSmoothJoin = isSmoothJoin; } #endregion #region AddToFigure internal override void AddToFigure( Matrix matrix, // The transformation matrid PathFigure figure, // The figure to add to ref Point current) // Out: Segment endpoint, not transformed { current = Point2; if (matrix.IsIdentity) { figure.Segments.Add(this); } else { Point pt1 = Point1; pt1 *= matrix; Point pt2 = current; pt2 *= matrix; figure.Segments.Add(new QuadraticBezierSegment(pt1, pt2, IsStroked, IsSmoothJoin)); } } #endregion #region Resource ////// SerializeData - Serialize the contents of this Segment to the provided context. /// internal override void SerializeData(StreamGeometryContext ctx) { ctx.QuadraticBezierTo(Point1, Point2, IsStroked, IsSmoothJoin); } #endregion internal override bool IsCurved() { return true; } ////// Creates a string representation of this object based on the format string /// and IFormatProvider passed in. /// If the provider is null, the CurrentCulture is used. /// See the documentation for IFormattable for more information. /// ////// A string representation of this object. /// internal override string ConvertToString(string format, IFormatProvider provider) { // Helper to get the numeric list separator for a given culture. char separator = MS.Internal.TokenizerHelper.GetNumericListSeparator(provider); return String.Format(provider, "Q{1:" + format + "}{0}{2:" + format + "}", separator, Point1, Point2); } } } // 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: QuadraticBezierSegment.cs //----------------------------------------------------------------------------- using System; using MS.Internal; using MS.Internal.PresentationCore; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using System.Collections; using System.Text; using System.Globalization; using System.Windows.Media; using System.Windows; using System.Text.RegularExpressions; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using System.Diagnostics; using System.Security; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media { ////// QuadraticBezierSegment /// public sealed partial class QuadraticBezierSegment : PathSegment { #region Constructors ////// /// public QuadraticBezierSegment() { } ////// /// public QuadraticBezierSegment(Point point1, Point point2, bool isStroked) { Point1 = point1; Point2 = point2; IsStroked = isStroked; } ////// /// internal QuadraticBezierSegment(Point point1, Point point2, bool isStroked, bool isSmoothJoin) { Point1 = point1; Point2 = point2; IsStroked = isStroked; IsSmoothJoin = isSmoothJoin; } #endregion #region AddToFigure internal override void AddToFigure( Matrix matrix, // The transformation matrid PathFigure figure, // The figure to add to ref Point current) // Out: Segment endpoint, not transformed { current = Point2; if (matrix.IsIdentity) { figure.Segments.Add(this); } else { Point pt1 = Point1; pt1 *= matrix; Point pt2 = current; pt2 *= matrix; figure.Segments.Add(new QuadraticBezierSegment(pt1, pt2, IsStroked, IsSmoothJoin)); } } #endregion #region Resource ////// SerializeData - Serialize the contents of this Segment to the provided context. /// internal override void SerializeData(StreamGeometryContext ctx) { ctx.QuadraticBezierTo(Point1, Point2, IsStroked, IsSmoothJoin); } #endregion internal override bool IsCurved() { return true; } ////// Creates a string representation of this object based on the format string /// and IFormatProvider passed in. /// If the provider is null, the CurrentCulture is used. /// See the documentation for IFormattable for more information. /// ////// A string representation of this object. /// internal override string ConvertToString(string format, IFormatProvider provider) { // Helper to get the numeric list separator for a given culture. char separator = MS.Internal.TokenizerHelper.GetNumericListSeparator(provider); return String.Format(provider, "Q{1:" + format + "}{0}{2:" + format + "}", separator, Point1, Point2); } } } // 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
- UIElement3DAutomationPeer.cs
- TextTreeInsertUndoUnit.cs
- Label.cs
- SparseMemoryStream.cs
- OptimalTextSource.cs
- CapabilitiesState.cs
- NetPeerTcpBinding.cs
- AutomationElementIdentifiers.cs
- TextRangeProviderWrapper.cs
- BlurBitmapEffect.cs
- LoginCancelEventArgs.cs
- SQLDateTime.cs
- CreateDataSourceDialog.cs
- InternalBufferOverflowException.cs
- SHA256.cs
- ExpressionBinding.cs
- TemplateXamlParser.cs
- Pts.cs
- CrossContextChannel.cs
- Image.cs
- ComboBox.cs
- WriteFileContext.cs
- SpeechSeg.cs
- Transform3D.cs
- WCFModelStrings.Designer.cs
- TypedElement.cs
- ZipIOLocalFileDataDescriptor.cs
- ToolboxItemFilterAttribute.cs
- DbRetry.cs
- MultiView.cs
- ListViewInsertionMark.cs
- RightNameExpirationInfoPair.cs
- MaskedTextBoxDesignerActionList.cs
- TimeIntervalCollection.cs
- XmlReaderSettings.cs
- SafeFileMapViewHandle.cs
- SizeLimitedCache.cs
- WindowHideOrCloseTracker.cs
- CookieProtection.cs
- XmlIncludeAttribute.cs
- AssemblyContextControlItem.cs
- InvokeBase.cs
- RoleManagerSection.cs
- XomlCompilerResults.cs
- MexNamedPipeBindingCollectionElement.cs
- XmlCharType.cs
- AbstractExpressions.cs
- CaseInsensitiveHashCodeProvider.cs
- UInt64Converter.cs
- Misc.cs
- CultureSpecificCharacterBufferRange.cs
- NameValuePair.cs
- TextDecorationCollection.cs
- WebPartConnectionsConnectVerb.cs
- RSAPKCS1SignatureDeformatter.cs
- DocumentCollection.cs
- XmlSchemas.cs
- XmlSchemaSimpleTypeUnion.cs
- DebuggerAttributes.cs
- CompilerState.cs
- InputScope.cs
- PassportIdentity.cs
- AspNetRouteServiceHttpHandler.cs
- TypedElement.cs
- ListViewItem.cs
- OdbcHandle.cs
- FrameworkObject.cs
- RuntimeArgumentHandle.cs
- CookieProtection.cs
- RequestStatusBarUpdateEventArgs.cs
- TypographyProperties.cs
- HMAC.cs
- RTTrackingProfile.cs
- CopyOnWriteList.cs
- PropertyEntry.cs
- XmlAttributeAttribute.cs
- CoreChannel.cs
- TraceSection.cs
- ZipIOLocalFileHeader.cs
- BehaviorEditorPart.cs
- QueueProcessor.cs
- TemplatedEditableDesignerRegion.cs
- XPathNodeHelper.cs
- BlockCollection.cs
- CurrentChangingEventArgs.cs
- Knowncolors.cs
- SocketAddress.cs
- HandleCollector.cs
- Vector3D.cs
- ParseChildrenAsPropertiesAttribute.cs
- SQLGuid.cs
- HttpClientChannel.cs
- MessageBox.cs
- BindingSource.cs
- WebPartMovingEventArgs.cs
- SocketElement.cs
- FormViewUpdatedEventArgs.cs
- SrgsElementList.cs
- WpfSharedXamlSchemaContext.cs
- ExpressionBuilder.cs