rect():枠だけの四角形を描く

説明

枠だけの四角形を描きます。指定するパラメーターは X1座標、Y1座標、X2座標、Y2座標、色の順番になります。

[以下のJavaScriptプログラムをダウンロード]

[もう1つのサンプルプログラムをダウンロード]

// Rect(x1,y1,x2,y2,color)
function rect(x1,y1,x2,y2,c){ 
  uart(128,8,1,x1,y1,x2,y1,c);
  uart(128,8,1,x2,y1,x2,y2,c);
  uart(128,8,1,x2,y2,x1,y2,c);
  uart(128,8,1,x1,y2,x1,y1,c);
}
// Sample Code
uart("\nPC CLEAR 00\n");
rect(4,2,52,23,3);

目次に戻る