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

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 help >> Graphics Library > twinkle

twinkle

グラフィックエンティティを点滅させる

呼び出し手順

twinkle(h,[n])

Parameters

h

グラフィックエンティティのハンドル.

n

整数.

説明n

twinkleはハンドルh で 指定したグラフィックエンティティを点滅させます. グラフィックウインドウ内でグラフィックハンドルに対応するグラフィックオブジェクトを 探す際に使用することができます. デフォルトでグラフィックエンティティは5回点滅しますが, オプションの引数 nによりこの値を変更することができます.

x=linspace(-2*%pi,2*%pi,100)';
plot2d(x,[sin(x),cos(x)]);
e=gce(); p1=e.children(1); p2=e.children(2);
// cos plot twinkle
twinkle(p1)
// sin plot twinkle 10 回
twinkle(p2,10)
// axes twinkle
twinkle(gca())

参照

  • graphics_entities — グラフィックスエンティティデータ構造体の説明
<< square Graphics Library xbasr >>

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:
Thu Mar 03 11:00:59 CET 2011