wndGet method

int wndGet(
  1. double x,
  2. double y
)

Implementation

int wndGet( double x, double y ){
	// 論理座標から実座標に変換
	return get( imgPosX( x ), imgPosY( y ) );
}