I’ve question to ask you guys…
Now lets say I’ve a virtual grid, and I have junction points on these virtual grid as show below

Now lets say I’ve drawn a triangle onto this virtual grid as show below

Now I wonder if any of the virtual grid’s point is contained by the triangle…
How can I achieve this using C#.Net?
Note: I also know the points for the triangles, and the question is for 2D plane..
My best regards…
Define your triangle as GraphicsPath and use GraphicsPath.IsVisible(Point) method to determine if this path contains the point.