wndPut method

bool wndPut(
  1. double x,
  2. double y
)

Implementation

bool wndPut( double x, double y ){
	// 論理座標から実座標に変換
	return put( imgPosX( x ), imgPosY( y ) );
}