Vector3Equals Method (Vector3, Vector3, Double)
|
Check if the components of two vectors are approximate equal.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static bool Equals(
Vector3 a,
Vector3 b,
double threshold
)
Public Shared Function Equals (
a As Vector3,
b As Vector3,
threshold As Double
) As Boolean
public:
static bool Equals(
Vector3 a,
Vector3 b,
double threshold
)
static member Equals :
a : Vector3 *
b : Vector3 *
threshold : float -> bool
STATIC METHOD Equals(
a AS Vector3,
b AS Vector3,
threshold AS REAL8
) AS LOGIC
Parameters
- a
- Type: DXFReaderNETVector3
Vector3. - b
- Type: DXFReaderNETVector3
Vector3. - threshold
- Type: SystemDouble
Maximum tolerance.
Return Value
Type:
BooleanTrue if the three components are almost equal or false in any other case.
See Also