Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Evidence.cs
- StringUtil.cs
- RotateTransform3D.cs
- Rotation3DAnimation.cs
- ControlAdapter.cs
- FontStyleConverter.cs
- WrappedIUnknown.cs
- NativeObjectSecurity.cs
- PersianCalendar.cs
- DataGridViewRowsRemovedEventArgs.cs
- EntityKey.cs
- DataGridHeaderBorder.cs
- StylusCollection.cs
- QilGenerator.cs
- CodeCompiler.cs
- IntellisenseTextBox.designer.cs
- DoubleSumAggregationOperator.cs
- UnmanagedHandle.cs
- AssemblyBuilderData.cs
- VariantWrapper.cs
- CodeMethodReturnStatement.cs
- TrustManagerPromptUI.cs
- DbFunctionCommandTree.cs
- EmptyCollection.cs
- LambdaCompiler.Statements.cs
- TransformCryptoHandle.cs
- NamedPipeHostedTransportConfiguration.cs
- SafePEFileHandle.cs
- CheckBoxFlatAdapter.cs
- OutputCacheProfileCollection.cs
- InvokeBase.cs
- RouteItem.cs
- ITreeGenerator.cs
- WebDisplayNameAttribute.cs
- ToolboxItemCollection.cs
- LeafCellTreeNode.cs
- ReverseInheritProperty.cs
- NotSupportedException.cs
- ButtonChrome.cs
- ToolStripSplitButton.cs
- BaseConfigurationRecord.cs
- DoubleLinkList.cs
- NullExtension.cs
- SqlRemoveConstantOrderBy.cs
- ContourSegment.cs
- MonitoringDescriptionAttribute.cs
- BamlTreeUpdater.cs
- SetState.cs
- ThrowHelper.cs
- RectAnimationBase.cs
- dataobject.cs
- AnnotationHighlightLayer.cs
- MatrixIndependentAnimationStorage.cs
- OraclePermission.cs
- ManagedWndProcTracker.cs
- SqlFileStream.cs
- HGlobalSafeHandle.cs
- Part.cs
- WebPartUtil.cs
- ComponentRenameEvent.cs
- MimeBasePart.cs
- MetadataCache.cs
- ToolBarButtonClickEvent.cs
- BaseTemplateCodeDomTreeGenerator.cs
- HGlobalSafeHandle.cs
- TranslateTransform.cs
- PropertyAccessVisitor.cs
- WebConfigurationManager.cs
- Command.cs
- ConfigXmlElement.cs
- FunctionQuery.cs
- ResXBuildProvider.cs
- DataBindingList.cs
- RequestResizeEvent.cs
- OAVariantLib.cs
- CodeTypeMemberCollection.cs
- PinnedBufferMemoryStream.cs
- ItemContainerPattern.cs
- Int32CollectionConverter.cs
- MimeTypeAttribute.cs
- MSAAEventDispatcher.cs
- TreeNodeStyle.cs
- basevalidator.cs
- CustomPopupPlacement.cs
- ModelUIElement3D.cs
- CaseStatement.cs
- ApplicationServiceManager.cs
- KeyMatchBuilder.cs
- PackWebRequestFactory.cs
- SchemaImporterExtension.cs
- EncryptedPackage.cs
- DocumentCollection.cs
- FtpWebResponse.cs
- KnownColorTable.cs
- DnsCache.cs
- TaiwanCalendar.cs
- AdCreatedEventArgs.cs
- ButtonFieldBase.cs
- XPathArrayIterator.cs
- ProvidePropertyAttribute.cs