-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add PolylinesOverlap function #36
Conversation
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
|
||
public final class PolylinesNotOverlappingIoxPluginTest { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Q: Wie ist das Verhalten bei zwei identischen Linien, wird das getestet?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ich habe das Verhalten noch etwas angepasst, dass Linien mit gleichen Teilstrecken nun auch als Overlap gelten (es entspricht somit nicht mehr zu 100% der Definition von overlap, aber ich habe keinen passenderen Begriff gefunden).
Dabei wird geprüft, dass die Schnittmenge der Linien ebenfalls eine Linie ist (entspricht den Beispielen 29-47 im folgenden Bild).
Resolves #32