Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.0 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilabヘルプ >> 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");

参照

  • get — グラフィックエンティティまたはユーザーインターフェイスオブジェクト からプロパティの値を取得する.
  • set — グラフィックエンティティオブジェクトまたは またはユーザインターフェイスオブジェクトのプロパティの値を設定する.
  • copy — グラフィックエンティティをコピー.
  • glue — 一連のグラフィックエンティティをCompoundに結合する.
  • graphics_entities — グラフィックスエンティティデータ構造体の説明
Report an issue
<< swap_handles handle interaction >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Feb 14 15:10:31 CET 2017