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
- Walker.cs
- DataIdProcessor.cs
- OpacityConverter.cs
- ParentQuery.cs
- SchemaInfo.cs
- TextProperties.cs
- GridView.cs
- X509CertificateTrustedIssuerElementCollection.cs
- ThrowHelper.cs
- NameValueSectionHandler.cs
- ObjectReaderCompiler.cs
- HtmlTable.cs
- ClientUtils.cs
- DisplayNameAttribute.cs
- BookmarkScope.cs
- NavigationService.cs
- WebPartEditorCancelVerb.cs
- SecondaryViewProvider.cs
- OdbcDataReader.cs
- TableChangeProcessor.cs
- XmlSchemaComplexContent.cs
- SecurityValidationBehavior.cs
- MsmqElementBase.cs
- MemberCollection.cs
- DataTableMappingCollection.cs
- HttpStaticObjectsCollectionBase.cs
- TraceListeners.cs
- PageTheme.cs
- AssemblyNameProxy.cs
- HierarchicalDataBoundControl.cs
- CurrencyWrapper.cs
- XmlQueryRuntime.cs
- CodeCompileUnit.cs
- Rss20FeedFormatter.cs
- WebPartConnectionsCancelVerb.cs
- RemotingConfiguration.cs
- DATA_BLOB.cs
- ByteStorage.cs
- WebPartEventArgs.cs
- MemberNameValidator.cs
- EntityDataSourceStatementEditorForm.cs
- XmlC14NWriter.cs
- Selection.cs
- CodeLinePragma.cs
- ApplicationActivator.cs
- SqlRetyper.cs
- FunctionImportElement.cs
- Drawing.cs
- ArrayWithOffset.cs
- ConnectionPoolManager.cs
- fixedPageContentExtractor.cs
- ParserStack.cs
- FileSystemWatcher.cs
- DisplayMemberTemplateSelector.cs
- RadialGradientBrush.cs
- SecurityProtocolCorrelationState.cs
- EncryptedPackage.cs
- bidPrivateBase.cs
- ToolboxItemWrapper.cs
- RegionIterator.cs
- X509ChainPolicy.cs
- GridViewCommandEventArgs.cs
- TypedRowGenerator.cs
- SharedDp.cs
- LoginName.cs
- EntityModelBuildProvider.cs
- SHA512Managed.cs
- SQLBytes.cs
- AutomationElement.cs
- ImageBrush.cs
- SamlAudienceRestrictionCondition.cs
- TextBoxBase.cs
- DataPager.cs
- FreezableOperations.cs
- ComponentResourceManager.cs
- CheckBoxFlatAdapter.cs
- DocumentXmlWriter.cs
- CodeTypeReferenceCollection.cs
- CodeVariableDeclarationStatement.cs
- IBuiltInEvidence.cs
- NavigationPropertyEmitter.cs
- Int32CAMarshaler.cs
- UnsafeMethods.cs
- KnownAssembliesSet.cs
- DataGridViewAdvancedBorderStyle.cs
- Stylus.cs
- ScriptResourceHandler.cs
- SqlComparer.cs
- Context.cs
- MissingMethodException.cs
- Win32Native.cs
- WebDescriptionAttribute.cs
- DataGridBoundColumn.cs
- EmulateRecognizeCompletedEventArgs.cs
- ProfileProvider.cs
- MultiPageTextView.cs
- CorrelationResolver.cs
- DataGridViewRowPostPaintEventArgs.cs
- TreeBuilder.cs
- FileInfo.cs