Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / BezierSegment.cs / 1305600 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UIElementAutomationPeer.cs
- ReturnValue.cs
- PackWebRequestFactory.cs
- ObjectParameterCollection.cs
- ValueSerializer.cs
- XmlExtensionFunction.cs
- NonBatchDirectoryCompiler.cs
- NameObjectCollectionBase.cs
- String.cs
- SystemFonts.cs
- InvalidCastException.cs
- WorkflowView.cs
- XmlComment.cs
- SystemNetworkInterface.cs
- PackageFilter.cs
- SHA1Managed.cs
- ScrollItemProviderWrapper.cs
- FormsAuthentication.cs
- InkPresenter.cs
- _ContextAwareResult.cs
- SqlSelectClauseBuilder.cs
- TrackBar.cs
- BamlResourceSerializer.cs
- WebPartPersonalization.cs
- XmlElement.cs
- PropertyMapper.cs
- MulticastDelegate.cs
- ContextConfiguration.cs
- EntitySqlQueryState.cs
- PaintValueEventArgs.cs
- XPathNode.cs
- SpinWait.cs
- sqlcontext.cs
- PeerOutputChannel.cs
- DbConnectionClosed.cs
- TableColumn.cs
- DeliveryRequirementsAttribute.cs
- NotFiniteNumberException.cs
- WebOperationContext.cs
- LinkButton.cs
- CapabilitiesUse.cs
- DependencyObjectPropertyDescriptor.cs
- WebBrowserHelper.cs
- Font.cs
- NotFiniteNumberException.cs
- EntityDataSourceContextCreatedEventArgs.cs
- AdapterDictionary.cs
- FixedPageAutomationPeer.cs
- DoubleCollectionConverter.cs
- WindowsSecurityTokenAuthenticator.cs
- DataRow.cs
- propertytag.cs
- FixedStringLookup.cs
- IPEndPoint.cs
- ResXResourceReader.cs
- HierarchicalDataBoundControl.cs
- DeviceContexts.cs
- Win32MouseDevice.cs
- ImplicitInputBrush.cs
- SoapReflectionImporter.cs
- JumpPath.cs
- RtfControls.cs
- AssemblyUtil.cs
- TemplateEditingFrame.cs
- NestedContainer.cs
- LinkArea.cs
- InputProviderSite.cs
- MimeReflector.cs
- ProfilePropertySettings.cs
- UnmanagedBitmapWrapper.cs
- DocumentPageView.cs
- DataGridPagerStyle.cs
- TimerElapsedEvenArgs.cs
- CapiHashAlgorithm.cs
- UnmanagedHandle.cs
- SuppressIldasmAttribute.cs
- FastEncoderWindow.cs
- TreeViewBindingsEditorForm.cs
- DesignerActionUIStateChangeEventArgs.cs
- basecomparevalidator.cs
- JoinTreeSlot.cs
- DiscoveryUtility.cs
- AuthenticationSection.cs
- MemberDomainMap.cs
- TheQuery.cs
- Common.cs
- FileLoadException.cs
- ConnectionsZone.cs
- _HelperAsyncResults.cs
- X509PeerCertificateAuthentication.cs
- CollectionChangeEventArgs.cs
- SoapClientProtocol.cs
- DataGridColumnHeaderAutomationPeer.cs
- IPEndPointCollection.cs
- Automation.cs
- ExeContext.cs
- ObjectTag.cs
- ActivityIdHeader.cs
- PersonalizationAdministration.cs
- UnitySerializationHolder.cs