Kaydet (Commit) 2c798538 authored tarafından Caolán McNamara's avatar Caolán McNamara

Revert "fTools::getSmallValue() is not used anymore"

to fix the build

This reverts commit ce7d80c6.
üst 06cb0e6d
......@@ -151,10 +151,13 @@ namespace basegfx
class BASEGFX_DLLPUBLIC fTools
{
public:
/// Get threshold value for equalZero and friends
static double getSmallValue() { return 0.000000001f; }
/// Compare against small value
static bool equalZero(const double& rfVal)
{
return (fabs(rfVal) <= 0.000000001f);
return (fabs(rfVal) <= getSmallValue());
}
/// Compare against given small value
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment