Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / 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
- CodeMemberProperty.cs
- BatchStream.cs
- ObjectHelper.cs
- ChangePasswordDesigner.cs
- Site.cs
- CompiledRegexRunnerFactory.cs
- OneToOneMappingSerializer.cs
- OleDbException.cs
- InputLanguageCollection.cs
- Environment.cs
- GridViewCommandEventArgs.cs
- RuleConditionDialog.cs
- ResourceCategoryAttribute.cs
- ScriptMethodAttribute.cs
- HotSpotCollection.cs
- PointLightBase.cs
- PersistenceException.cs
- Privilege.cs
- coordinator.cs
- XamlStream.cs
- RenderContext.cs
- SqlProviderManifest.cs
- Terminate.cs
- ByteStreamMessageEncoder.cs
- mansign.cs
- BamlMapTable.cs
- Int16Storage.cs
- VersionedStreamOwner.cs
- SafeBitVector32.cs
- DateRangeEvent.cs
- HTTPAPI_VERSION.cs
- HierarchicalDataBoundControlAdapter.cs
- WCFModelStrings.Designer.cs
- NamespaceDisplay.xaml.cs
- MLangCodePageEncoding.cs
- XmlSubtreeReader.cs
- Image.cs
- TextClipboardData.cs
- ProcessRequestArgs.cs
- AvTraceDetails.cs
- SafeFileHandle.cs
- SimpleWorkerRequest.cs
- SystemKeyConverter.cs
- FixedPosition.cs
- RbTree.cs
- DataSpaceManager.cs
- MimeParameters.cs
- ProxyWebPart.cs
- CredentialCache.cs
- CompilerCollection.cs
- ScriptRef.cs
- CommandSet.cs
- CodeCastExpression.cs
- GiveFeedbackEvent.cs
- ConstructorNeedsTagAttribute.cs
- HttpCachePolicy.cs
- DesignTimeTemplateParser.cs
- ThreadAttributes.cs
- DbConnectionClosed.cs
- ExtensibleClassFactory.cs
- GridView.cs
- WebServiceHandler.cs
- XamlParser.cs
- OleDbCommand.cs
- InputScopeConverter.cs
- TimeSpanMinutesConverter.cs
- UInt16Converter.cs
- XmlAttribute.cs
- ConstantSlot.cs
- Timer.cs
- ColorConvertedBitmap.cs
- BindingMemberInfo.cs
- dbenumerator.cs
- XPathEmptyIterator.cs
- WebPartMenu.cs
- SubclassTypeValidatorAttribute.cs
- Preprocessor.cs
- InheritablePropertyChangeInfo.cs
- PhonemeEventArgs.cs
- DifferencingCollection.cs
- UnaryExpression.cs
- XhtmlMobileTextWriter.cs
- GridViewColumnHeader.cs
- RawUIStateInputReport.cs
- DataGridViewColumnHeaderCell.cs
- XPathConvert.cs
- Bidi.cs
- ControlUtil.cs
- SystemIPAddressInformation.cs
- UniqueContractNameValidationBehavior.cs
- HttpFileCollectionWrapper.cs
- HttpListenerRequest.cs
- CompositeTypefaceMetrics.cs
- TypeDescriptor.cs
- List.cs
- Exception.cs
- VectorAnimationBase.cs
- DefaultHttpHandler.cs
- HttpRuntimeSection.cs
- PersianCalendar.cs