Vector2Inequality 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 !=(
Vector2 u,
Vector2 v
)
Public Shared Operator <> (
u As Vector2,
v As Vector2
) As Boolean
public:
static bool operator !=(
Vector2 u,
Vector2 v
)
static let inline (<>)
u : Vector2 *
v : Vector2 : bool
STATIC OPERATOR !=(
u AS Vector2,
v AS Vector2
) AS LOGIC
Parameters
- u
- Type: DXFReaderNETVector2
First vector. - v
- Type: DXFReaderNETVector2
Second vector.
Return Value
Type:
BooleanTrue if the two components are different or false in any other case.
See Also