コード例 #1
0
ファイル: mathutil.cpp プロジェクト: koz4k/soccer
String AsString(double x, int digits)
{
	if(IsNull(x)) return Null;
	if(fabs(x) >= 1e15)
		return FormatDoubleExp(x, tabs(digits), digits < 0 ? FD_ZEROS : 0);
	return FormatDoubleFix(x, tabs(digits), digits < 0 ? FD_ZEROS : 0);
}
コード例 #2
0
void Tab6_Logarithmic::FormatX(String& s, int i, double d)
{
	s = FormatDoubleExp(pow(10., d), 1);
}
コード例 #3
0
ファイル: tab6.cpp プロジェクト: ratsa02/upp-mirror
void Tab6::FormatX(String& s, int i, double d)
{
	s = FormatDoubleExp(pow(10., d), 1);
}