Converts a formatted string value into an array of 3-D point value.
Rhino.Str2PtArray (strPoints)
strPoints |
Required. String. A string that contains an unknown number of space delimited points like "1,2,3 4,5,6 7,8,9". |
Array |
An array of 3-D points if successful. |
Null |
If not successful, or on error. |
Dim arrPoints
arrPoints = Rhino.Str2PtArray("1,2,3 4,5,6 7,8,9")
If IsArray(arrPoints) Then
Rhino.AddPointCloud arrPoints
End If