fullseye

particle_step — GFX2D particle op

使い方

Advance a particle state by dt seconds. Returns a new dict.

Semi-implicit (symplectic) Euler::

v <- v + (g - drag*v) * dt
p <- p + v * dt
age <- age + dt

which makes the closed form exact and checkable: with gravity=(0,0) and drag=0 the position after k steps is p0 + v0*k*dt, and with drag the speed is v0 * (1 - drag*dt)**k. Both are compared as equalities in the test suite.

gravity is (gx, gy) in px/s^2, positive gy pulling down the screen. The input dict is never mutated.

Raises ValueError: dt <= 0; drag * dt >= 1, which is the point where explicit drag stops decaying the speed and starts reversing it — an instability that otherwise shows up as particles flying backwards rather than as an error.

参考(サンプルデータ・文献)

実行できる例(この op を実際に呼ぶ検証済みサンプル)

型が繋がる次の op(table を入力に取れる)

layer_stack · particle_render

同カテゴリ(particle)

particle_emit · particle_render


Provenance: gfx2d.py — GFX2D operator registry. この per-op ノートは tools/opdocs.py md が自動生成(手編集しない)。

© 2026 Kazufumi Furuse — Fullseye operator documentation. Licensed under Apache-2.0.