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 / BezierSegment.cs / 1 / BezierSegment.cs
//------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, 2001 // // File: BezierSegment.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.Composition; using System.Windows.Media.Animation; using System.Diagnostics; using System.Security; using System.Security.Permissions; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media { ////// BezierSegment /// public sealed partial class BezierSegment : PathSegment { #region Constructors ////// /// public BezierSegment() : base() { } ////// /// public BezierSegment(Point point1, Point point2, Point point3, bool isStroked) { Point1 = point1; Point2 = point2; Point3 = point3; IsStroked = isStroked; } // Internal constructor supporting smooth joins between segments internal BezierSegment(Point point1, Point point2, Point point3, bool isStroked, bool isSmoothJoin) { Point1 = point1; Point2 = point2; Point3 = point3; 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 = Point3; if (matrix.IsIdentity) { figure.Segments.Add(this); } else { Point pt1 = Point1; pt1 *= matrix; Point pt2 = Point2; pt2 *= matrix; Point pt3 = current; pt3 *= matrix; figure.Segments.Add(new BezierSegment(pt1, pt2, pt3, IsStroked, IsSmoothJoin)); } } #endregion #region Resource ////// SerializeData - Serialize the contents of this Segment to the provided context. /// internal override void SerializeData(StreamGeometryContext ctx) { ctx.BezierTo(Point1, Point2, Point3, IsStroked, IsSmoothJoin); } 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, "C{1:" + format + "}{0}{2:" + format + "}{0}{3:" + format + "}", separator, Point1, Point2, Point3 ); } #endregion } } // 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: BezierSegment.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.Composition; using System.Windows.Media.Animation; using System.Diagnostics; using System.Security; using System.Security.Permissions; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media { ////// BezierSegment /// public sealed partial class BezierSegment : PathSegment { #region Constructors ////// /// public BezierSegment() : base() { } ////// /// public BezierSegment(Point point1, Point point2, Point point3, bool isStroked) { Point1 = point1; Point2 = point2; Point3 = point3; IsStroked = isStroked; } // Internal constructor supporting smooth joins between segments internal BezierSegment(Point point1, Point point2, Point point3, bool isStroked, bool isSmoothJoin) { Point1 = point1; Point2 = point2; Point3 = point3; 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 = Point3; if (matrix.IsIdentity) { figure.Segments.Add(this); } else { Point pt1 = Point1; pt1 *= matrix; Point pt2 = Point2; pt2 *= matrix; Point pt3 = current; pt3 *= matrix; figure.Segments.Add(new BezierSegment(pt1, pt2, pt3, IsStroked, IsSmoothJoin)); } } #endregion #region Resource ////// SerializeData - Serialize the contents of this Segment to the provided context. /// internal override void SerializeData(StreamGeometryContext ctx) { ctx.BezierTo(Point1, Point2, Point3, IsStroked, IsSmoothJoin); } 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, "C{1:" + format + "}{0}{2:" + format + "}{0}{3:" + format + "}", separator, Point1, Point2, Point3 ); } #endregion } } // 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
- FontNameEditor.cs
- ProcessRequestAsyncResult.cs
- EditorAttributeInfo.cs
- CryptoProvider.cs
- SqlCachedBuffer.cs
- CustomLineCap.cs
- RegexNode.cs
- ToolStripComboBox.cs
- ServiceOperationParameter.cs
- SmtpNtlmAuthenticationModule.cs
- SimplePropertyEntry.cs
- TrustSection.cs
- TableAutomationPeer.cs
- HtmlMeta.cs
- precedingquery.cs
- InstalledFontCollection.cs
- InvalidAsynchronousStateException.cs
- WebPartConnectionsConnectVerb.cs
- NotifyIcon.cs
- CultureInfoConverter.cs
- RewritingValidator.cs
- SafeBitVector32.cs
- TogglePattern.cs
- TrackingServices.cs
- PointLightBase.cs
- newinstructionaction.cs
- XmlNode.cs
- CryptoHandle.cs
- RunWorkerCompletedEventArgs.cs
- SystemWebCachingSectionGroup.cs
- Script.cs
- XamlHttpHandlerFactory.cs
- SqlBulkCopyColumnMapping.cs
- DataError.cs
- DesignOnlyAttribute.cs
- HtmlShim.cs
- EmptyElement.cs
- TextSegment.cs
- FileSystemWatcher.cs
- Model3DGroup.cs
- TrackBar.cs
- PeerMaintainer.cs
- DateTimeFormatInfo.cs
- ImageList.cs
- ParseNumbers.cs
- ListItemDetailViewAttribute.cs
- EndpointConfigContainer.cs
- SqlException.cs
- XmlReflectionImporter.cs
- RangeValidator.cs
- GregorianCalendarHelper.cs
- ListViewEditEventArgs.cs
- TitleStyle.cs
- SchemaAttDef.cs
- backend.cs
- DataAdapter.cs
- StaticFileHandler.cs
- CharKeyFrameCollection.cs
- WebPartConnectVerb.cs
- DropShadowBitmapEffect.cs
- Matrix3DStack.cs
- HandledEventArgs.cs
- BitmapCacheBrush.cs
- TextParaLineResult.cs
- LinqDataSourceHelper.cs
- SchemaNamespaceManager.cs
- ErrorRuntimeConfig.cs
- sqlmetadatafactory.cs
- CompositeFontInfo.cs
- DocumentOrderQuery.cs
- DictionaryCustomTypeDescriptor.cs
- WindowsRebar.cs
- ExpressionVisitor.cs
- OpenFileDialog.cs
- CharAnimationBase.cs
- HtmlTitle.cs
- XmlReader.cs
- DbProviderConfigurationHandler.cs
- MetadataArtifactLoaderCompositeResource.cs
- StringPropertyBuilder.cs
- TraceFilter.cs
- SqlException.cs
- controlskin.cs
- XmlRawWriterWrapper.cs
- SqlAggregateChecker.cs
- OrderedDictionary.cs
- PriorityRange.cs
- EntityClientCacheKey.cs
- ProcessProtocolHandler.cs
- ConfigurationManagerInternalFactory.cs
- SmtpDigestAuthenticationModule.cs
- Selection.cs
- DBCSCodePageEncoding.cs
- XmlILOptimizerVisitor.cs
- Grammar.cs
- FontStyles.cs
- CombinedGeometry.cs
- OutgoingWebRequestContext.cs
- MenuItemStyleCollection.cs
- Menu.cs