/*============================================================================= CAMath.h $Log: CAMath.h,v $ Revision 1.3 2004/08/23 06:23:25 jcm10 make it build on Windows Revision 1.2 2004/04/21 22:23:56 asynth fiszero(Float32) should use the right sized constant. Revision 1.1 2004/04/09 22:42:16 dwyatt initial checkin created 9 Apr 2004, 12:14, Doug Wyatt Copyright (c) 2004 Apple Computer, Inc. All Rights Reserved $NoKeywords: $ =============================================================================*/ #ifndef __CAMath_h__ #define __CAMath_h__ #if !defined(__COREAUDIO_USE_FLAT_INCLUDES__) #include #else #include #endif inline bool fiszero(Float64 f) { return (f == 0.); } inline bool fiszero(Float32 f) { return (f == 0.f); } inline bool fnonzero(Float64 f) { return !fiszero(f); } inline bool fnonzero(Float32 f) { return !fiszero(f); } inline bool fequal(const Float64 &a, const Float64 &b) { return a == b; } inline bool fequal(const Float32 &a, const Float32 &b) { return a == b; } inline bool fnotequal(const Float64 &a, const Float64 &b) { return !fequal(a, b); } inline bool fnotequal(const Float32 &a, const Float32 &b) { return !fequal(a, b); } #endif // __CAMath_h__