Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / IsPointInsideOrOntoBBox2D Method
The Point2D to test
The bottom left corner of the BoundingBox 2D
The Top right corner of the BoundingBox 2D

In This Topic
    IsPointInsideOrOntoBBox2D Method
    In This Topic
    Check if the Point3D is inside or onto the BoundingBox 2D made by boxMin and boxMax
    Syntax
    'Declaration
     
    Public Shared Function IsPointInsideOrOntoBBox2D( _
       ByVal pointToCheck As Point2D, _
       ByVal boxMin As Point2D, _
       ByVal boxMax As Point2D _
    ) As Boolean
    public static bool IsPointInsideOrOntoBBox2D( 
       Point2D pointToCheck,
       Point2D boxMin,
       Point2D boxMax
    )

    Parameters

    pointToCheck
    The Point2D to test
    boxMin
    The bottom left corner of the BoundingBox 2D
    boxMax
    The Top right corner of the BoundingBox 2D

    Return Value

    See Also