Scilab-Branch-5.3-GIT
      
      
    Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
xfarcs
楕円の集合の一部を塗りつぶす
呼び出し手順
xfarcs(arcs,[style])
パラメータ
- arcs
- 楕円を記述する大きさ (6,n) の行列. 
- style
- 使用する色を指定する大きさnの行ベクトル. 
説明
xarcs はarcsで記述された楕円の集合の
	一部を塗りつぶします: 
    arcs=[x y w h a1 a2;x y w h a1 a2;...]' ただし,
	各楕円は6個のパラメータ (x,y,w,h,a1,a2)
	 (xfarc参照)により定義されます.
x, y, w, h パラメータはユーザ座標で指定されます.
style(i)はi番の楕円を
	塗りつぶす色番号を指定します.
例
plot2d(0,0,-1,"031"," ",[-1,-1,1,1]) arcs=[-1.0 0.0 0.5; // 左上 x 1.0 0.0 0.5; // 左上 y 0.5 1.0 0.5; // 幅 0.5 0.5 1.0; // 高さ 0.0 0.0 0.0; // 角度 1 180*64 360*64 90*64]; // 角度 2 xfarcs(arcs,[1,2,3])
作者
J.Ph.C.
| << xfarc | geometric_shapes | xfrect >> |