| GeometryHelperHaveContact Method (Aabb, Vector3F) |
Determines whether the axis-aligned bounding box (AABB) contains or touches the given point.
Namespace: DigitalRune.GeometryAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax public static bool HaveContact(
Aabb aabb,
Vector3F point
)
Public Shared Function HaveContact (
aabb As Aabb,
point As Vector3F
) As Boolean
public:
static bool HaveContact(
Aabb aabb,
Vector3F point
)
static member HaveContact :
aabb : Aabb *
point : Vector3F -> bool
Parameters
- aabb
- Type: DigitalRune.Geometry.ShapesAabb
The axis-aligned bounding box (AABB). - point
- Type: DigitalRune.Mathematics.AlgebraVector3F
The point.
Return Value
Type:
Boolean if AABB and the point have contact; otherwise
.
See Also