Converts a formatted string value into a 3-D point value.
rhinoscriptsyntax.Str2Pt (point)
rhinoscript.utility.Str2Pt (point)
point |
Required. String. A string that contains a delimited point like "1,2,3". |
Point3d |
A 3-D point if successful. |
None |
On error. |
import rhinoscriptsyntax as rs
point = rs.Str2Pt("1,2,3")
if point: rs.AddPoint( point )
Pt2Str