summaryrefslogtreecommitdiff
path: root/plugins/Quotes/src/IsWithinAccuracy.h
blob: 2430cd8675a669ba670981d97cd2e8be5704b7f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __C8C6FB80_D66B_4382_8FAB_E92C83F77BB8_IsWithinAcuracy_h__
#define __C8C6FB80_D66B_4382_8FAB_E92C83F77BB8_IsWithinAcuracy_h__

inline bool IsWithinAccuracy(double dValue1, double dValue2, double dAccuracy = 1e-4)
{
	double dDifference = dValue1 - dValue2;

	if ((-dAccuracy <= dDifference) && (dDifference <= dAccuracy))
		return true;
	else
		return false;
}


#endif //__C8C6FB80_D66B_4382_8FAB_E92C83F77BB8_IsWithinAcuracy_h__