ユーザ用ツール

サイト用ツール


一定時間間隔でscriptを実行する_アニメーション作成

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン前のリビジョン
次のリビジョン
前のリビジョン
一定時間間隔でscriptを実行する_アニメーション作成 [2023/01/26 15:27] jmitani一定時間間隔でscriptを実行する_アニメーション作成 [2023/01/26 15:48] (現在) – [サンプルコード1] jmitani
行 6: 行 6:
 {{:timer.png?direct|}} {{:timer.png?direct|}}
  
 +
 +
 +
 +==== サンプルコード1 ====
  
 Script コンポーネントのコード Script コンポーネントのコード
行 20: 行 24:
 a = counter a = counter
 </code> </code>
 +
 +\\
 +.ghファイルのダウンロード\\
 +{{:timer.gh |}}
 +
  
 動作している様子 動作している様子
  
-{{:timer.mp4?400x |}}+{{:timer.mp4?600x |}} 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 + 
 +==== サンプルコード2 ==== 
 +counterの値が0からMaxの値まで増えたあとに、Maxから0まで減少するようにしたもの 
 + 
 +Script コンポーネントのコード 
 +<code python> 
 +import rhinoscriptsyntax as rs 
 + 
 +if not Run or 'counter' not in globals(): 
 +  counter = 0 
 +  tick = 1 
 +else: 
 +  counter += tick 
 +  if counter >= Max or counter <= 0: 
 +      tick *= -1 
 + 
 +a = counter 
 +</code> 
 + 
 +上記のタイマーを使ったアニメーション 
 + 
 +.ghファイルのダウンロード\\ 
 +{{ :timer2.gh |}} 
 + 
 + 
 +{{:timer2.mp4?600x |}} 
  
-.ghファイル 
-{{ :timer.gh |}} 
一定時間間隔でscriptを実行する_アニメーション作成.1674714425.txt.gz · 最終更新: 2023/01/26 15:27 by jmitani

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki