BoundingSphereEqualsEpsilon Method |
Indicates whether the center and radius of another instance of this type
is within the required tolerance of the corresponding center and radius value of this instance.
Namespace:
AGI.Foundation.Graphics.Advanced
Assembly:
AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public bool EqualsEpsilon(
BoundingSphere other,
double epsilon
)
Public Function EqualsEpsilon (
other As BoundingSphere,
epsilon As Double
) As Boolean
public:
bool EqualsEpsilon(
BoundingSphere other,
double epsilon
)
member EqualsEpsilon :
other : BoundingSphere *
epsilon : float -> bool
Parameters
- other
- Type: AGI.Foundation.Graphics.AdvancedBoundingSphere
The set of BoundingSphere parameters (center and radius) to compare to this instance. - epsilon
- Type: SystemDouble
The limit at which the absolute differences between the values will not be considered equal.
Return Value
Type:
Boolean if the absolute differences are less than or equal to
epsilon; otherwise,
.
See Also