TextureCoordinate4DFEqualsEpsilon Method |
Indicates whether each coordinate parameter of another instance of this type
is within the required tolerance of the corresponding coordinate parameter.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public bool EqualsEpsilon(
TextureCoordinate4DF other,
double epsilon
)
Public Function EqualsEpsilon (
other As TextureCoordinate4DF,
epsilon As Double
) As Boolean
public:
bool EqualsEpsilon(
TextureCoordinate4DF other,
double epsilon
)
member EqualsEpsilon :
other : TextureCoordinate4DF *
epsilon : float -> bool
Parameters
- other
- Type: AGI.Foundation.CoordinatesTextureCoordinate4DF
The set of TextureCoordinate4DF parameters 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