Determines whether two points are equal.
Namespace:
Meta.Numerics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static bool operator ==(
XY a,
XY b
)
Public Shared Operator = (
a As XY,
b As XY
) As Boolean
public:
static bool operator ==(
XY a,
XY b
)
static let inline (=)
a : XY *
b : XY : bool
Parameters
- a
- Type: Meta.NumericsXY
The first point. - b
- Type: Meta.NumericsXY
The second point.
Return Value
Type:
Boolean if
a and
b refer to the same
point, otherwise
.
See Also