Scilab 6.0.1
Please note that the recommended version of Scilab is 2025.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
番の楕円を
塗りつぶす色番号を指定します.
a2が360*64に等しい場合, 完全な円が描画されます.
例
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])
Report an issue | ||
<< xfarc | geometric_shapes | xfrect >> |