| 591 | /// \related Line3D |
| 592 | |
| 593 | inline Line3D RightComplement(const Line3D& l) |
| 594 | { |
| 595 | return (Line3D(-l.m.x, -l.m.y, -l.m.z, -l.v.x, -l.v.y, -l.v.z)); |
| 596 | } |
| 597 | |
| 598 | /// \brief Returns the left complement of the 3D plane $g$, which is a 3D flat point. |
| 599 | /// \related Plane3D |
no test coverage detected