XY Conversion (XY to TupleDouble, Double) |
Converts a point into a two-tuple.
Namespace:
Meta.Numerics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static implicit operator Tuple<double, double> (
XY point
)
Public Shared Widening Operator CType (
point As XY
) As Tuple(Of Double, Double)
static implicit operator Tuple<double, double>^ (
XY point
)
F# does not support the declaration of new casting operators.
Parameters
- point
- Type: Meta.NumericsXY
The point to convert.
Return Value
Type:
TupleDouble,
DoubleThe equivalent two-tuple, with
X as the first item and
Y as the second item.
See Also