Adds a 3-point arc curve to the document.
Rhino.AddArc3Pt (arrStart, arrEnd, arrPoint)
arrStart |
Required. Array. The starting point of the arc. |
arrEnd |
Required. Array. The ending point of the arc. |
arrPoint |
Required. Array. A point on the arc. |
String |
The identifier of the new object if successful. |
Null |
If not successful, or on error. |
Dim arrStart, arrEnd, arrPoint
arrStart = Rhino.GetPoint("Start of arc")
If IsArray(arrStart) Then
arrEnd = Rhino.GetPoint("End of arc")
If IsArray(arrEnd) Then
arrPoint = Rhino.GetPoint("Point on arc")
If IsArray(arrPoint) Then
Rhino.AddArc3Pt arrStart, arrEnd, arrPoint
End If
End If
End If