Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / MS / Internal / Ink / StrokeNodeData.cs / 1305600 / 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
- SynchronizedRandom.cs
- StandardBindingReliableSessionElement.cs
- SqlDataSourceWizardForm.cs
- QueryFunctions.cs
- URL.cs
- XsltQilFactory.cs
- ZoomPercentageConverter.cs
- ResXBuildProvider.cs
- NameValuePermission.cs
- DependencyObjectType.cs
- XmlSchemaSimpleTypeUnion.cs
- RelationshipType.cs
- VersionedStreamOwner.cs
- _AutoWebProxyScriptWrapper.cs
- IncrementalReadDecoders.cs
- SmtpReplyReader.cs
- PropertyTabAttribute.cs
- WmfPlaceableFileHeader.cs
- BrowserInteropHelper.cs
- GridViewEditEventArgs.cs
- ThreadNeutralSemaphore.cs
- PageThemeParser.cs
- DelayedRegex.cs
- DataFormats.cs
- EditorPart.cs
- NamedElement.cs
- AlphabeticalEnumConverter.cs
- Point3DAnimationUsingKeyFrames.cs
- FileInfo.cs
- MobileControlsSectionHelper.cs
- UnionCodeGroup.cs
- CodeMemberField.cs
- MouseActionConverter.cs
- Validator.cs
- CryptographicAttribute.cs
- DeviceContexts.cs
- TextDecorationCollection.cs
- AbsoluteQuery.cs
- QilSortKey.cs
- GregorianCalendar.cs
- NonParentingControl.cs
- DataBoundControlHelper.cs
- NullableLongMinMaxAggregationOperator.cs
- SoapSchemaImporter.cs
- XmlSchemaNotation.cs
- StrongNameSignatureInformation.cs
- C14NUtil.cs
- MessageQueueAccessControlEntry.cs
- ViewStateModeByIdAttribute.cs
- MailWriter.cs
- SettingsBase.cs
- DataBinder.cs
- InspectionWorker.cs
- IChannel.cs
- TimeoutException.cs
- ReadOnlyDictionary.cs
- NativeActivity.cs
- _DynamicWinsockMethods.cs
- BindStream.cs
- OdbcConnectionPoolProviderInfo.cs
- RSAPKCS1SignatureDeformatter.cs
- PropertyIDSet.cs
- DefaultAssemblyResolver.cs
- TranslateTransform3D.cs
- XmlFormatWriterGenerator.cs
- WS2007FederationHttpBinding.cs
- PauseStoryboard.cs
- BaseCodePageEncoding.cs
- RadioButtonAutomationPeer.cs
- ClientRoleProvider.cs
- __TransparentProxy.cs
- PropertyPushdownHelper.cs
- VerificationAttribute.cs
- XmlText.cs
- CustomCategoryAttribute.cs
- SByteConverter.cs
- AstTree.cs
- BindingBase.cs
- CodeArrayIndexerExpression.cs
- CalendarTable.cs
- DodSequenceMerge.cs
- XpsImageSerializationService.cs
- NamespaceExpr.cs
- OpacityConverter.cs
- AnimationLayer.cs
- LinkDesigner.cs
- ClientBuildManager.cs
- HyperLinkDataBindingHandler.cs
- Propagator.Evaluator.cs
- SendSecurityHeader.cs
- ProbeMatchesApril2005.cs
- ComponentTray.cs
- MergablePropertyAttribute.cs
- TextPenaltyModule.cs
- WindowsAuthenticationEventArgs.cs
- ContainerTracking.cs
- BufferModeSettings.cs
- InputLanguageCollection.cs
- StringComparer.cs
- CodeDirectionExpression.cs