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: 25.1.421.0 (25.1.421.0)
Syntaxpublic 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 
.
RemarksThis algorithm is O(edge).
See Also