Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- SQLResource.cs
- Int32AnimationUsingKeyFrames.cs
- XMLSyntaxException.cs
- MultipartIdentifier.cs
- IdleTimeoutMonitor.cs
- HtmlInputReset.cs
- SqlPersonalizationProvider.cs
- SessionKeyExpiredException.cs
- DeferredElementTreeState.cs
- EdmItemCollection.OcAssemblyCache.cs
- MultiView.cs
- RadialGradientBrush.cs
- HtmlElementCollection.cs
- SingleAnimationBase.cs
- TabControlCancelEvent.cs
- Cursor.cs
- PropertyPathWorker.cs
- SessionState.cs
- HandlerFactoryCache.cs
- HttpSysSettings.cs
- AlphabeticalEnumConverter.cs
- ToolStripSeparator.cs
- DetailsViewDeleteEventArgs.cs
- _OverlappedAsyncResult.cs
- Attribute.cs
- SvcMapFile.cs
- StateMachineExecutionState.cs
- CacheChildrenQuery.cs
- CheckableControlBaseAdapter.cs
- EventRouteFactory.cs
- ParseNumbers.cs
- NativeCompoundFileAPIs.cs
- XMLSyntaxException.cs
- ScrollChrome.cs
- XPathBuilder.cs
- ClientBuildManagerCallback.cs
- LocalFileSettingsProvider.cs
- Trace.cs
- FormatControl.cs
- InlineObject.cs
- FileDialog.cs
- EndpointIdentityExtension.cs
- SoapAttributes.cs
- TypeViewSchema.cs
- TextBlock.cs
- Rotation3D.cs
- Int64.cs
- XamlSerializer.cs
- XmlImplementation.cs
- AutomationProperties.cs
- HandlerBase.cs
- ViewUtilities.cs
- CollectionEditVerbManager.cs
- ConfigErrorGlyph.cs
- DelegateSerializationHolder.cs
- MatrixConverter.cs
- Pen.cs
- TextServicesContext.cs
- ProfileSettingsCollection.cs
- MetadataException.cs
- CompilerErrorCollection.cs
- QueryMatcher.cs
- DependencyProperty.cs
- CaseStatement.cs
- DeviceContext2.cs
- Set.cs
- WebCategoryAttribute.cs
- ExtensionSimplifierMarkupObject.cs
- XmlDataProvider.cs
- ParsedAttributeCollection.cs
- ProcessInfo.cs
- ImageUrlEditor.cs
- HandlerFactoryCache.cs
- SafeNativeMethods.cs
- ErrorRuntimeConfig.cs
- DBConcurrencyException.cs
- WebPartTransformer.cs
- OdbcError.cs
- ExtensionDataObject.cs
- ButtonBaseAdapter.cs
- MemberCollection.cs
- MultiTrigger.cs
- ZipIOCentralDirectoryFileHeader.cs
- Renderer.cs
- EntityDataSourceWrapperCollection.cs
- Rect.cs
- WebBrowser.cs
- PaintEvent.cs
- rsa.cs
- WindowClosedEventArgs.cs
- HostDesigntimeLicenseContext.cs
- IisTraceWebEventProvider.cs
- DataControlImageButton.cs
- RuleProcessor.cs
- RegexParser.cs
- NavigationPropertyEmitter.cs
- GenerateHelper.cs
- XmlUtil.cs
- QueryPageSettingsEventArgs.cs
- BroadcastEventHelper.cs