| GeometryHelperHaveContact Method (Vector3F, Vector3F) |
Determines whether the specified point is inside the box.
Namespace: DigitalRune.GeometryAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax public static bool HaveContact(
Vector3F boxExtent,
Vector3F point
)
Public Shared Function HaveContact (
boxExtent As Vector3F,
point As Vector3F
) As Boolean
public:
static bool HaveContact(
Vector3F boxExtent,
Vector3F point
)
static member HaveContact :
boxExtent : Vector3F *
point : Vector3F -> bool
Parameters
- boxExtent
- Type: DigitalRune.Mathematics.AlgebraVector3F
The box extent (the widths in x, y, and z). - point
- Type: DigitalRune.Mathematics.AlgebraVector3F
The point (in the local space of the box).
Return Value
Type:
Boolean if the specified point is inside; otherwise,
.
See Also