| 51 | bool isOnLine(L(A, B)) const { |
| 52 | return ((A - *this) * (B - *this)).isZero(); } |
| 53 | bool isInSegment(L(A, B)) const { |
| 54 | return isOnLine(A, B) && ((A - *this) % (B - *this))<EPS;} |
| 55 | bool isInSegmentStrictly(L(A, B)) const { |
| 56 | return isOnLine(A, B) && ((A - *this) % (B - *this))<-EPS;} |
| 57 | double getAngle() const { |
nothing calls this directly
no outgoing calls
no test coverage detected