isZero static method

bool isZero(
  1. double x
)

Implementation

static bool isZero( double x ){
	// NaNをゼロでないように判定させる処理
	return (isNan( x ) || (x != 0.0)) ? false : true;
}