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 Naramp... Tue, 10/04/2011 - 17:46
It is in the file Precision.lxx
Excerpt from the same file...
Tue, 10/04/2011 - 17:46
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
}
Tue, 10/04/2011 - 17:56
Thank you for the hint;-)