Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / MS / Internal / Ink / StrokeNodeData.cs / 1 / StrokeNodeData.cs
//------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Windows; using System.Windows.Media; using System.Windows.Input; using System.Diagnostics; namespace MS.Internal.Ink { #region StrokeNodeData ////// This structure represents a node on a stroke spine. /// internal struct StrokeNodeData { #region Statics private static StrokeNodeData s_empty = new StrokeNodeData(); #endregion #region API (internal) ///Returns static object representing an unitialized node internal static StrokeNodeData Empty { get { return s_empty; } } ////// Constructor for nodes of a pressure insensitive stroke /// /// position of the node internal StrokeNodeData(Point position) { _position = position; _pressure = 1; } ////// Constructor for nodes with pressure data /// /// position of the node /// pressure scaling factor at the node internal StrokeNodeData(Point position, float pressure) { System.Diagnostics.Debug.Assert(DoubleUtil.GreaterThan((double)pressure, 0d)); _position = position; _pressure = pressure; } ///Tells whether the structre was properly initialized internal bool IsEmpty { get { Debug.Assert(DoubleUtil.AreClose(0, s_empty._pressure)); return DoubleUtil.AreClose(_pressure, s_empty._pressure); } } ///Position of the node internal Point Position { get { return _position; } } ///Pressure scaling factor at the node internal float PressureFactor { get { return _pressure; } } #endregion #region Privates private Point _position; private float _pressure; #endregion } #endregion } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataPointer.cs
- CreatingCookieEventArgs.cs
- ParagraphResult.cs
- DataGridRowHeader.cs
- TextElementEnumerator.cs
- ToolboxControl.cs
- TimeSpanValidatorAttribute.cs
- SchemaTypeEmitter.cs
- MapPathBasedVirtualPathProvider.cs
- StringDictionaryWithComparer.cs
- BoundingRectTracker.cs
- TransportDefaults.cs
- lengthconverter.cs
- RuntimeEnvironment.cs
- DataGridPagerStyle.cs
- SelectionRangeConverter.cs
- SqlUdtInfo.cs
- InstanceView.cs
- FileNotFoundException.cs
- XamlTemplateSerializer.cs
- SelectionWordBreaker.cs
- SqlCaseSimplifier.cs
- DiscoveryInnerClientManaged11.cs
- PluralizationServiceUtil.cs
- ConfigurationManagerInternal.cs
- NotifyParentPropertyAttribute.cs
- CompleteWizardStep.cs
- DoubleCollectionConverter.cs
- StatusStrip.cs
- EntityFrameworkVersions.cs
- TextEditorCopyPaste.cs
- XhtmlBasicLabelAdapter.cs
- MenuItem.cs
- HttpHandlerActionCollection.cs
- ConnectionStringSettings.cs
- WindowsSecurityTokenAuthenticator.cs
- ClickablePoint.cs
- Base64Encoding.cs
- Repeater.cs
- WebRequest.cs
- CaseCqlBlock.cs
- sitestring.cs
- TimelineGroup.cs
- AstTree.cs
- WorkingDirectoryEditor.cs
- MSAANativeProvider.cs
- XmlSchemaProviderAttribute.cs
- ManagementObject.cs
- XmlSchemaCollection.cs
- ReadOnlyPropertyMetadata.cs
- ItemCheckEvent.cs
- UserControlAutomationPeer.cs
- IndependentAnimationStorage.cs
- CookielessHelper.cs
- DateRangeEvent.cs
- MessageBox.cs
- DesignerTextViewAdapter.cs
- ContextStaticAttribute.cs
- EastAsianLunisolarCalendar.cs
- DesignOnlyAttribute.cs
- PanelContainerDesigner.cs
- HwndTarget.cs
- Rect3D.cs
- GenericIdentity.cs
- SerializationFieldInfo.cs
- PageAdapter.cs
- TemplateBamlTreeBuilder.cs
- ObjectSecurity.cs
- OpenFileDialog.cs
- ExceptionCollection.cs
- KeyValueSerializer.cs
- FixedDocumentPaginator.cs
- UnsafeNativeMethods.cs
- _KerberosClient.cs
- CriticalExceptions.cs
- RowToFieldTransformer.cs
- Properties.cs
- RenderContext.cs
- CalendarDay.cs
- Rijndael.cs
- SmiContextFactory.cs
- ObjectDataProvider.cs
- SweepDirectionValidation.cs
- DefaultValueAttribute.cs
- WaveHeader.cs
- DataGridToolTip.cs
- StreamBodyWriter.cs
- InvalidCommandTreeException.cs
- UIElement.cs
- StackBuilderSink.cs
- SafeFindHandle.cs
- CodeBinaryOperatorExpression.cs
- XmlAtomicValue.cs
- EnvelopedPkcs7.cs
- LogReserveAndAppendState.cs
- ColumnResizeAdorner.cs
- ChannelManager.cs
- DefaultValueTypeConverter.cs
- CellTreeNode.cs
- iisPickupDirectory.cs