Vector3Inequality Operator
|
Check if the components of two vectors are different.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static bool operator !=(
Vector3 u,
Vector3 v
)
Public Shared Operator <> (
u As Vector3,
v As Vector3
) As Boolean
public:
static bool operator !=(
Vector3 u,
Vector3 v
)
static let inline (<>)
u : Vector3 *
v : Vector3 : bool
STATIC OPERATOR !=(
u AS Vector3,
v AS Vector3
) AS LOGIC
Parameters
- u
- Type: DXFReaderNETVector3
First vector. - v
- Type: DXFReaderNETVector3
Second vector.
Return Value
Type:
BooleanTrue if the three components are different or false in any other case.
See Also