| 114 | // ============================================== |
| 115 | |
| 116 | Dipole2D Terathon::Antiwedge(const Circle2D& c, const Circle2D& o) |
| 117 | { |
| 118 | return (Dipole2D(c.x * o.w - c.w * o.x, |
| 119 | c.y * o.w - c.w * o.y, |
| 120 | c.z * o.w - c.w * o.z, |
| 121 | |
| 122 | c.z * o.y - c.y * o.z, |
| 123 | c.x * o.z - c.z * o.x, |
| 124 | c.y * o.x - c.x * o.y)); |
| 125 | } |
| 126 | |
| 127 | Dipole2D Terathon::Antiwedge(const Circle2D& c, const Line2D& g) |
| 128 | { |
nothing calls this directly
no test coverage detected