ForceField represents a force field. A force is defined for every point.
| 8 | |
| 9 | // ForceField represents a force field. A force is defined for every point. |
| 10 | type ForceField interface { |
| 11 | ForceAt(pos *math32.Vector3) math32.Vector3 |
| 12 | } |
| 13 | |
| 14 | // |
| 15 | // ConstantForceField is a constant force field. |
no outgoing calls
no test coverage detected