BoundingSphere.EqualsEpsilon 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: 25.1.421.0 (25.1.421.0)
Syntaxpublic bool EqualsEpsilon(
BoundingSphere other,
double epsilon
)
Public Function EqualsEpsilon (
other As BoundingSphere,
epsilon As Double
) As Boolean
public:
virtual bool EqualsEpsilon(
BoundingSphere other,
double epsilon
) sealed
abstract EqualsEpsilon :
other : BoundingSphere *
epsilon : float -> bool
override EqualsEpsilon :
other : BoundingSphere *
epsilon : float -> bool
Parameters
- other
- Type: AGI.Foundation.Graphics.Advanced.BoundingSphere
The set of BoundingSphere parameters (center and radius) to compare to this instance. - epsilon
- Type: System.Double
The limit at which the absolute differences between the values will not be considered equal.
Return Value
Type:
Booleantrue if the absolute differences are less than or equal to
epsilon; otherwise,
false.
Implements
IEquatableEpsilon<T>.EqualsEpsilon(T, Double)
See Also