<< drawlater figure_operations figure_properties >>

Scilab Help >> Graphics > figure_operations > drawnow

drawnow

隠されたグラフィックエンティティを描画.

呼び出し手順

drawnow()

説明

カレントの図に関して, この関数は, drawlaterをコールすることにより延期されていた 隠されたグラフィックエンティティとその子を描画するために 使用されます.カレントの図immediate_drawing プロパティは "on"に設定されます.

この関数は特にdrawlater 関数と組み合わせて使用されます.

f=get("current_figure") // カレントの図のハンドル

drawlater()

subplot(221);

t=1:10;plot2d(t,t.^2)

subplot(222);

x=0:1:7;plot2d(x,cos(x),2)

subplot(234);

plot2d(t,cos(t),3);

subplot(235);

plot2d(x,sin(2*x),5);

subplot(236);

plot2d(t,tan(2*t));

drawnow(); // カレントの図を描画

参照


Report an issue
<< drawlater figure_operations figure_properties >>