logX method

double logX(
  1. double x
)

Implementation

double logX( double x ){
	return _info[_curIndex]._isLogScaleX ? ClipMath.log( x ) * _info[_curIndex]._logBaseX : x;
}