Precision::Confusion

Hi,

Does anybody know how I can set the Precision::Confusion value?
I searched for a routine in Precision.hxx but did not find one
to set this value (I am using OpenCacade6.3.0).

Thanks,

Nicolas

Sharjith Naramparambath's picture

It is in the file Precision.lxx
Excerpt from the same file...

//=======================================================================
//function : Confusion
//purpose :
//=======================================================================

inline Standard_Real Precision::Confusion()
{
#ifdef PRECISION_OBSOLETE
static const Standard_Real Precision_Confusion = 1.e-7;
return Precision_Confusion;
#else
return 1.e-7;
#endif
}

bardili's picture

Thank you for the hint;-)