TwoDimensionalConvexHullIsInsideHull Method |
Indicates if the query point is inside the convex hull.
Namespace:
AGI.Foundation.Geometry
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public bool IsInsideHull(
Rectangular queryPoint
)
Public Function IsInsideHull (
queryPoint As Rectangular
) As Boolean
public:
bool IsInsideHull(
Rectangular queryPoint
)
member IsInsideHull :
queryPoint : Rectangular -> bool
Parameters
- queryPoint
- Type: AGI.Foundation.CoordinatesRectangular
The point to be analyzed.
Return Value
Type:
Boolean if the query point is inside the hull; otherwise
.
Remarks This algorithm is O(edge).
See Also