logY method

double logY(
  1. double y
)

Implementation

double logY( double y ){
	return _info[_curIndex]._isLogScaleY ? ClipMath.log( y ) * _info[_curIndex]._logBaseY : y;
}