Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.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.
However, this page did not exist in the previous stable version.

Scilab manual >> Graphics Library > handle > draw

draw

エンティティを描画.

呼び出し手順

draw()
draw(h)

パラメータ

h

ハンドル, 描画するエンティティのハンドル. h は ハンドルのベクトルとすることができ, この場合, h(i)で特定される全てのオブジェクト が描画されます.

説明

この関数は,hで指定されるエンティティを 描画する際に使用されます. その親の図のimmediate_drawingプロパティが "off"の場合でも描画は実行されます. 引数が指定されない場合,カレントのオブジェクト が描画されます. ウインドウの大きさを変更するべきではないことに注意してください; 変更するとこのオブジェクトが隠されてしまいます.

subplot(212)
a=gca();
plot2d
drawlater

subplot(211)
plot2d1 // デフォルトの描画モード

e=gce();
draw(e.children(2)) // ポリゴンを1つ,2番目の軸に描画

e.children(1).visible='off'; // 線を不可視に設定

draw(e) // Compound とその子を描画 <=> 全ての可視のポリラインを描画

drawnow // ...now!

e.children(1).visible='on';

作者

Djalel ABDEMOUCHE, F.Leray

<< delete handle gce >>

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:
Wed Jan 26 16:25:13 CET 2011