Vector3AreParallel Method (Vector3, Vector3, Double)
|
Checks if two vectors are parallel.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static bool AreParallel(
Vector3 u,
Vector3 v,
double threshold
)
Public Shared Function AreParallel (
u As Vector3,
v As Vector3,
threshold As Double
) As Boolean
public:
static bool AreParallel(
Vector3 u,
Vector3 v,
double threshold
)
static member AreParallel :
u : Vector3 *
v : Vector3 *
threshold : float -> bool
STATIC METHOD AreParallel(
u AS Vector3,
v AS Vector3,
threshold AS REAL8
) AS LOGIC
Parameters
- u
- Type: DXFReaderNETVector3
First vector. - v
- Type: DXFReaderNETVector3
Second vector. - threshold
- Type: SystemDouble
Tolerance used.
Return Value
Type:
BooleanTrue if are parallel or false in any other case.
See Also