Big push to implement 10mp fluid simulations.

This commit is contained in:
2025-12-03 10:21:36 -05:00
parent ba2c798b2e
commit 719b386822
11 changed files with 1536 additions and 337 deletions

6
fluid/particle.go Normal file
View File

@@ -0,0 +1,6 @@
package fluid
type Particle struct {
Position FieldVector
Velocity FieldVector
}