| 6 | import * as THREE from "three"; |
| 7 | |
| 8 | export interface LiquidEtherProps { |
| 9 | mouseForce?: number; |
| 10 | cursorSize?: number; |
| 11 | isViscous?: boolean; |
| 12 | viscous?: number; |
| 13 | iterationsViscous?: number; |
| 14 | iterationsPoisson?: number; |
| 15 | dt?: number; |
| 16 | BFECC?: boolean; |
| 17 | resolution?: number; |
| 18 | isBounce?: boolean; |
| 19 | colors?: string[]; |
| 20 | style?: React.CSSProperties; |
| 21 | className?: string; |
| 22 | autoDemo?: boolean; |
| 23 | autoSpeed?: number; |
| 24 | autoIntensity?: number; |
| 25 | takeoverDuration?: number; |
| 26 | autoResumeDelay?: number; |
| 27 | autoRampDuration?: number; |
| 28 | } |
| 29 | |
| 30 | interface SimOptions { |
| 31 | iterations_poisson: number; |
nothing calls this directly
no outgoing calls
no test coverage detected