BoxContains Method (Point3d) |
Determines whether a point is inside this Box, including its boundary.
This is the same as calling Contains(point,false).
Invalid boxes contain nothing. Invalid points are never contained.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntaxpublic bool Contains(
Point3d point
)
Public Function Contains (
point As Point3d
) As Boolean
Parameters
- point
- Type: Rhino.GeometryPoint3d
Point to test.
Return Value
Type:
Booleantrue if the point is in the inside or on the boundary of this Box. false if this Box or the Point are invalid.
See Also