XY Conversion (TupleDouble, Double to XY) |
Converts a two-tuple into a point.
Namespace:
Meta.Numerics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax 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.
Parameters
- point
- Type: SystemTupleDouble, Double
The two-tuple to convert.
Return Value
Type:
XYThe equivalent point, with
X equal to first item and
Y equal to the second item.
See Also