BoxContains Method |
| Name | Description | |
|---|---|---|
| Contains(BoundingBox) |
Determines whether a BoundingBox is inside this Box, including its boundary.
This is the same as calling Contains(box,false).
Invalid boxes contain nothing. Invalid bounding boxes are never contained.
| |
| Contains(Box) |
Determines whether a Box is inside this Box, including its boundary.
This is the same as calling Contains(box,false).
Invalid boxes contain nothing. Invalid boxes are never contained.
| |
| Contains(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.
| |
| Contains(BoundingBox, Boolean) |
Determines whether a BoundingBox is inside this Box (strict inclusion, if strict is true).
Invalid boxes contain nothing. Invalid bounding boxes are never contained.
| |
| Contains(Box, Boolean) |
Determines whether a Box is inside this Box (strict inclusion, if strict is true).
Invalid boxes contain nothing. Invalid boxes are never contained.
| |
| Contains(Point3d, Boolean) |
Determines whether a point is (strictly, if strict is true) inside this Box.
Invalid boxes contain nothing. Invalid points are never contained.
|