Return a perpendicular vector to this one. The result is equivalent to rotating the vector 90 degrees clockwise around the origin.
| 150 | /// Return a perpendicular vector to this one. The result is equivalent to rotating the |
| 151 | /// vector 90 degrees clockwise around the origin. |
| 152 | Point2F getPerpendicular() const { return Point2F( y, - x ); } |
| 153 | |
| 154 | //-------------------------------------- Overloaded operators |
| 155 | public: |