Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Shared / MS / Internal / FloatUtil.cs / 1 / FloatUtil.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: FloatUtil.cs // // Description: This file contains the implementation of FloatUtil, which // provides "fuzzy" comparison functionality for floats and // float-based classes and structs in our code. // // History: // 04/28/2003 : adsmith - Created this header // 05/20/2003 : adsmith - Move to Shared. // //--------------------------------------------------------------------------- using System; namespace MS.Internal { internal static class FloatUtil { internal static float FLT_EPSILON = 1.192092896e-07F; internal static float FLT_MAX_PRECISION = 0xffffff; internal static float INVERSE_FLT_MAX_PRECISION = 1.0F / FLT_MAX_PRECISION; ////// AreClose /// public static bool AreClose(float a, float b) { if(a == b) return true; // This computes (|a-b| / (|a| + |b| + 10.0f)) < FLT_EPSILON float eps = ((float)Math.Abs(a) + (float)Math.Abs(b) + 10.0f) * FLT_EPSILON; float delta = a - b; return(-eps < delta) && (eps > delta); } ////// IsOne /// public static bool IsOne(float a) { return (float)Math.Abs(a-1.0f) < 10.0f * FLT_EPSILON; } ////// IsZero /// public static bool IsZero(float a) { return (float)Math.Abs(a) < 10.0f * FLT_EPSILON; } ////// IsCloseToDivideByZero /// public static bool IsCloseToDivideByZero(float numerator, float denominator) { // When updating this, please also update code in Arithmetic.h return Math.Abs(denominator) <= Math.Abs(numerator) * INVERSE_FLT_MAX_PRECISION; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: FloatUtil.cs // // Description: This file contains the implementation of FloatUtil, which // provides "fuzzy" comparison functionality for floats and // float-based classes and structs in our code. // // History: // 04/28/2003 : adsmith - Created this header // 05/20/2003 : adsmith - Move to Shared. // //--------------------------------------------------------------------------- using System; namespace MS.Internal { internal static class FloatUtil { internal static float FLT_EPSILON = 1.192092896e-07F; internal static float FLT_MAX_PRECISION = 0xffffff; internal static float INVERSE_FLT_MAX_PRECISION = 1.0F / FLT_MAX_PRECISION; ////// AreClose /// public static bool AreClose(float a, float b) { if(a == b) return true; // This computes (|a-b| / (|a| + |b| + 10.0f)) < FLT_EPSILON float eps = ((float)Math.Abs(a) + (float)Math.Abs(b) + 10.0f) * FLT_EPSILON; float delta = a - b; return(-eps < delta) && (eps > delta); } ////// IsOne /// public static bool IsOne(float a) { return (float)Math.Abs(a-1.0f) < 10.0f * FLT_EPSILON; } ////// IsZero /// public static bool IsZero(float a) { return (float)Math.Abs(a) < 10.0f * FLT_EPSILON; } ////// IsCloseToDivideByZero /// public static bool IsCloseToDivideByZero(float numerator, float denominator) { // When updating this, please also update code in Arithmetic.h return Math.Abs(denominator) <= Math.Abs(numerator) * INVERSE_FLT_MAX_PRECISION; } } } // 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
- MachineKeySection.cs
- SimpleBitVector32.cs
- MenuAutomationPeer.cs
- NamespaceList.cs
- NamespaceQuery.cs
- RelatedCurrencyManager.cs
- StorageFunctionMapping.cs
- DivideByZeroException.cs
- InstanceContext.cs
- SelectionProcessor.cs
- ClientTargetCollection.cs
- RootNamespaceAttribute.cs
- ManipulationDelta.cs
- TreeNodeMouseHoverEvent.cs
- BitmapData.cs
- ThreadAttributes.cs
- InputScopeConverter.cs
- DataGridViewTextBoxColumn.cs
- MediaContextNotificationWindow.cs
- UserControlAutomationPeer.cs
- DataGridViewRow.cs
- InheritanceAttribute.cs
- SqlFactory.cs
- ServiceRouteHandler.cs
- ECDsaCng.cs
- ToolboxComponentsCreatingEventArgs.cs
- FormatException.cs
- DiscoveryInnerClientAdhocCD1.cs
- Margins.cs
- XmlBoundElement.cs
- DateTimeOffsetConverter.cs
- WindowsScrollBarBits.cs
- OletxEnlistment.cs
- AppDomainUnloadedException.cs
- XmlDataSource.cs
- ContentAlignmentEditor.cs
- SmuggledIUnknown.cs
- Html32TextWriter.cs
- DateTimeFormatInfoScanner.cs
- StylusPointPropertyId.cs
- SafeArchiveContext.cs
- XmlToDatasetMap.cs
- PrivilegeNotHeldException.cs
- RtfToXamlReader.cs
- HttpCachePolicyElement.cs
- LogStream.cs
- FixedPageProcessor.cs
- QilStrConcatenator.cs
- DeploymentSection.cs
- SystemUnicastIPAddressInformation.cs
- UnsafeMethods.cs
- DataColumnChangeEvent.cs
- EndSelectCardRequest.cs
- RNGCryptoServiceProvider.cs
- XPathAncestorQuery.cs
- LogReservationCollection.cs
- HttpHandlerAction.cs
- GrammarBuilderDictation.cs
- FamilyTypeface.cs
- DataTransferEventArgs.cs
- MailAddressCollection.cs
- EntitySetBaseCollection.cs
- MultipartContentParser.cs
- ParseNumbers.cs
- MsmqIntegrationAppDomainProtocolHandler.cs
- DebugView.cs
- DecimalConverter.cs
- EventData.cs
- FileDialog.cs
- SimpleExpression.cs
- DurableServiceAttribute.cs
- SubpageParaClient.cs
- HtmlForm.cs
- PropertyChangedEventArgs.cs
- SiteMapProvider.cs
- RawStylusInputCustomData.cs
- PersistenceException.cs
- transactioncontext.cs
- SqlProfileProvider.cs
- ByteStream.cs
- DbConnectionInternal.cs
- Switch.cs
- EventHandlingScope.cs
- HtmlInputButton.cs
- ToolboxSnapDragDropEventArgs.cs
- WebPartsPersonalization.cs
- ThicknessKeyFrameCollection.cs
- ReferenceAssemblyAttribute.cs
- Rijndael.cs
- BindingMAnagerBase.cs
- _ConnectStream.cs
- LoginAutoFormat.cs
- EventProviderWriter.cs
- IMembershipProvider.cs
- WebEvents.cs
- ReadOnlyDictionary.cs
- MouseButton.cs
- Parameter.cs
- ExpressionBinding.cs
- Pen.cs