maksolino Posted November 20, 2009 Posted November 20, 2009 Hello I'm looking for a rhino script similar of command _AnnotateCrvEndPoints but only for annotate one single position (points or vertex ) in my rhinomodel. Thanks Quote
SEANT Posted November 22, 2009 Posted November 22, 2009 How would that point or vertex be selected? Quote
maksolino Posted November 23, 2009 Author Posted November 23, 2009 - whith the mouse in the same way like inserting a point whith command _Point (snap on) P.s. I'd like to have the possibility to select the TEXT HEIGHT. Quote
SEANT Posted November 23, 2009 Posted November 23, 2009 This routine is based on what I could find out about _AnnotateCrvEndPoints. It used Annotation Dots which, unfortunately, don't have any resizing capabilities. Option Explicit Sub Dot2Point ' Declare variables Dim strLocation Dim strDot Dim arrPoint With Rhino Do arrPoint = .GetPoint("Select point at which to set dot: ") If IsArray (arrPoint) Then strLocation = .Pt2Str(arrPoint, 2) strDot = .AddTextDot (strLocation, arrPoint) Else Exit Sub End If Loop End With End Sub Dot2Point Quote
maksolino Posted November 23, 2009 Author Posted November 23, 2009 Thanks Seant That's just what I was looking for Quote
maksolino Posted May 17, 2012 Author Posted May 17, 2012 Hello it is possible to modify this script just for annotate the lenght of the curve (annotation in the mid point of the curve) Thanks Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.