| 35 | // ============================================== |
| 36 | |
| 37 | FlatPoint2D Terathon::FlatCenter(const Dipole2D& d) |
| 38 | { |
| 39 | return (FlatPoint2D(-d.g.x * d.g.z - d.g.y * d.p.z, |
| 40 | d.g.x * d.p.z - d.g.y * d.g.z, |
| 41 | d.g.x * d.g.x + d.g.y * d.g.y)); |
| 42 | } |
| 43 | |
| 44 | // ============================================== |
| 45 | // Container |
nothing calls this directly
no test coverage detected