Polygon2dIsPointInside Method |
Evaluates if the supplied point is inside the polygon.
Namespace:
Gile.AutoCAD.Geometry
Assembly:
GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic bool IsPointInside(
Point2d point
)
Public Function IsPointInside (
point As Point2d
) As Boolean
public:
bool IsPointInside(
Point2d point
)
member IsPointInside :
point : Point2d -> bool
Parameters
- point
- Type: Point2d
Point to evaluate.
Return Value
Type:
Booleantrue, if the point is inside or on the polygon; false otherwise.
See Also