| 709 | /// \related RoundPoint2D |
| 710 | |
| 711 | inline RoundPoint2D Partner(const RoundPoint2D& a) |
| 712 | { |
| 713 | float z2 = a.z * a.z; |
| 714 | return (RoundPoint2D(a.x * z2, a.y * z2, a.z * z2, (a.x * a.x + a.y * a.y - a.z * a.w) * a.z)); |
| 715 | } |
| 716 | |
| 717 | /// \brief Returns the partner of the 2D dipole $d$. |
| 718 | /// \related Dipole2D |
nothing calls this directly
no test coverage detected