| 28 | } |
| 29 | |
| 30 | interface SimOptions { |
| 31 | iterations_poisson: number; |
| 32 | iterations_viscous: number; |
| 33 | mouse_force: number; |
| 34 | resolution: number; |
| 35 | cursor_size: number; |
| 36 | viscous: number; |
| 37 | isBounce: boolean; |
| 38 | dt: number; |
| 39 | isViscous: boolean; |
| 40 | BFECC: boolean; |
| 41 | } |
| 42 | |
| 43 | interface LiquidEtherWebGL { |
| 44 | output?: { simulation?: { options: SimOptions; resize: () => void } }; |
nothing calls this directly
no outgoing calls
no test coverage detected