#!/usr/local/bin/tt

# 簡易 gnuplot アニメーションです。
# 1、システム変数の EXT_SHELL を gnuplot に設定します。
# 2、gnuplot の標準入力に splot コマンドを送信します。

EXT_SHELL = "/bin/gnuplot -p 2> /dev/null"
loop(t<1000){
	!splot sin(x-${t}/100.0)
}
