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