Converts array of double into a
Point3D struct.
'Declaration
Public Shared Function FromDoubleArray( _
ByVal () As Double _
) As Point3D
'Usage
Dim doubleArray() As Double
Dim value As Point3D
value = Point3D.FromDoubleArray(doubleArray)
Parameters
- doubleArray
- Array of double values to be converted.
Return Value
Point3D that represents the convert double array.