| 968 | /// \related RoundPoint3D |
| 969 | |
| 970 | inline RoundPoint3D Partner(const RoundPoint3D& a) |
| 971 | { |
| 972 | float w2 = a.w * a.w; |
| 973 | return (RoundPoint3D(a.x * w2, a.y * w2, a.z * w2, a.w * w2, (a.x * a.x + a.y * a.y + a.z * a.z - a.w * a.u) * a.w)); |
| 974 | } |
| 975 | |
| 976 | /// \brief Returns the partner of the 3D dipole $d$. |
| 977 | /// \related Dipole3D |
nothing calls this directly
no test coverage detected