You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public static bool IsPointInPolygon(int[] polygonPoints, Point p)
{
//here checks if the polygon made from the xy points contains the point inside of the polygon and returns true if the point is inside the polygon and false if not.
}
Original Comments
Feedback Bot on 12/1/2024, 09:47 PM:
Thank you for taking the time to provide your suggestion. We will do some preliminary checks to make sure we can proceed further. You will hear from us in about a week on our next steps.
The text was updated successfully, but these errors were encountered:
This doesn't fall into any area covered by .NET BCL. In System.Drawing there is limited support for data structures like points on 2D plain, but arithmetical or geometric algorithms are out-of-scope.
@ViktorHofer I think we can hold onto this on the backlog to see what sort of interest there is. We don't have bandwidth currently to dig in ourselves, and this would need to be developed more fully if there is strong interest.
We'd want to handle both types of points (Point, PointF)
This issue has been moved from a ticket on Developer Community.
public static bool IsPointInPolygon(int[] polygonPoints, Point p)
{
//here checks if the polygon made from the xy points contains the point inside of the polygon and returns true if the point is inside the polygon and false if not.
}
Original Comments
Feedback Bot on 12/1/2024, 09:47 PM:
Thank you for taking the time to provide your suggestion. We will do some preliminary checks to make sure we can proceed further. You will hear from us in about a week on our next steps.
The text was updated successfully, but these errors were encountered: