We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Implement a line-rectangle intersection test with the following signature:
public static bool Intersects(this LineSegment2F line, RectangleF rectangle)
Call that method from
public static bool Intersects(this RectangleF rectangle, LineSegment2F line)
If you can, provide an overload with an out parameter containing the intersection point(s).
Write at least one unit test illustrating your solution, and/or add any reference links as comments.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Implement a line-rectangle intersection test with the following signature:
Call that method from
If you can, provide an overload with an out parameter containing the intersection point(s).
Write at least one unit test illustrating your solution, and/or add any reference links as comments.
The text was updated successfully, but these errors were encountered: