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
xarcs
楕円の集合の一部を描画する
呼び出し手順
xarcs(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)
(xarc
参照)で
定義されます.
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 xarcs(arcs,[1,2,3])
Report an issue | ||
<< xarc | geometric_shapes | xarrows >> |