imgSizY method

int imgSizY(
  1. double y
)

Implementation

int imgSizY( double y ){
	y *= _ratioY2;
	if( ClipMath.isInf( y ) || ClipMath.isNan( y ) ){
		return -1;
	}
	return y.toInt();
}