Adds an annotation text dot to the document.
rhinoscriptsyntax.AddTextDot (text, point)
rhinoscript.geometry.AddTextDot (text, point)
text |
Required. String. A character or text string. |
point |
Required. list of 3 numbers or Point3d. A 3-D point identifying the origin point. |
Guid |
The identifier of the new object if successful. |
None |
If not successful, or on error. |
import rhinoscriptsyntax as rs
rs.AddTextDot("howdy",(1,2,3))