XY Conversion (TupleDouble, Double to XY)
Converts a two-tuple into a point.
Namespace: Meta.NumericsAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
public static implicit operator XY (
Tuple<double, double> point
)
Public Shared Widening Operator CType (
point As Tuple(Of Double, Double)
) As XY
static implicit operator XY (
Tuple<double, double>^ point
)
F# does not support the declaration of new casting operators.
- point TupleDouble, Double
- The two-tuple to convert.
XYThe equivalent point, with
X equal to first item and
Y equal to the second item.