+ Reply to Thread
Results 1 to 6 of 6
  1. #1
    Full Member
    Using
    AutoCAD 2006
    Join Date
    Mar 2009
    Posts
    41

    Default annotate one point

    Registered forum members do not see this ad.

    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

  2. #2
    Super Member SEANT's Avatar
    Using
    AutoCAD 2012
    Join Date
    Aug 2005
    Location
    Rhode Island
    Posts
    1,968

    Default

    How would that point or vertex be selected?

  3. #3
    Full Member
    Using
    AutoCAD 2006
    Join Date
    Mar 2009
    Posts
    41

    Default

    - 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.

  4. #4
    Super Member SEANT's Avatar
    Using
    AutoCAD 2012
    Join Date
    Aug 2005
    Location
    Rhode Island
    Posts
    1,968

    Default

    This routine is based on what I could find out about _AnnotateCrvEndPoints. It used Annotation Dots which, unfortunately, don't have any resizing capabilities.

    Code:
    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

  5. #5
    Full Member
    Using
    AutoCAD 2006
    Join Date
    Mar 2009
    Posts
    41

    Default

    Thanks Seant
    That's just what I was looking for

  6. #6
    Full Member
    Using
    AutoCAD 2006
    Join Date
    Mar 2009
    Posts
    41

    Default annotate curve lenght

    Registered forum members do not see this ad.

    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

Similar Threads

  1. How to annotate / link with new database information?
    By jcrayford in forum AutoCAD 2D Drafting, Object Properties & Interface
    Replies: 2
    Last Post: 25th Jun 2009, 01:38 pm
  2. Annotate
    By c.roberts in forum AutoCAD Beginners' Area
    Replies: 13
    Last Post: 25th Mar 2009, 02:19 pm
  3. Annotate object data/auto rotate etc.
    By Awolf in forum AutoCAD General
    Replies: 0
    Last Post: 2nd Apr 2007, 01:11 pm
  4. annotate (sp) help
    By mikemilburn in forum AutoCAD Beginners' Area
    Replies: 1
    Last Post: 26th Feb 2006, 03:13 am
  5. Annotate lisp routine.
    By Chris in forum AutoCAD Drawing Management & Output
    Replies: 2
    Last Post: 12th Nov 2005, 01:25 am

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts