<< swap_handles handle interaction >>

Scilab Help >> Graphics > handle > unglue

unglue

結合されたオブジェクトを分解し,個々の子で置換する.

呼び出し手順

unglue(h)
H=unglue(h)

引数

h

Compoundのハンドル.

H

Compound分解により返される結果のハンドルのベクトル.

説明

Compoundエンティティのハンドルを指定すると,この関数は Compoundを分解し,その要素エンティティをその親に関連付けます. glueは個々の子のハンドルのベクトルをを返します.

a=gca();
t=0:9;
x=cos(t*%pi/5);
y=sin(t*%pi/5);
plot(x,y,'r-');
p = unglue(gce())
set(p,"closed","on");

参照


Report an issue
<< swap_handles handle interaction >>