Vector3ArePerpendicular Method (Vector3, Vector3, Double)
|
Checks if two vectors are perpendicular.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static bool ArePerpendicular(
Vector3 u,
Vector3 v,
double threshold
)
Public Shared Function ArePerpendicular (
u As Vector3,
v As Vector3,
threshold As Double
) As Boolean
public:
static bool ArePerpendicular(
Vector3 u,
Vector3 v,
double threshold
)
static member ArePerpendicular :
u : Vector3 *
v : Vector3 *
threshold : float -> bool
STATIC METHOD ArePerpendicular(
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 perpendicular or false in any other case.
See Also