Indicates if the provided point is inside the volume.
Namespace:
AGI.Foundation.Geometry.Shapes
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public abstract bool Encloses(
Cartesian point
)
Public MustOverride Function Encloses (
point As Cartesian
) As Boolean
public:
virtual bool Encloses(
Cartesian point
) abstract
abstract Encloses :
point : Cartesian -> bool
Parameters
- point
- Type: AGI.Foundation.CoordinatesCartesian
The point to evaluate.
Return Value
Type:
Boolean if the point is inside the volume and
if the point lies on the boundary or outside of the volume.
Remarks
The point parameter must be expressed in the same coordinate frame
that the volume is defined in.
See Also